Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,284,923

Downloads of v 6.14.0:

72,994

Last Update:

14 May 2025

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

Nuget.CommandLine

  • 1
  • 2
  • 3

6.14.0 | Updated: 14 May 2025

Downloads:

2,284,923

Downloads of v 6.14.0:

72,994

Maintainer(s):

Software Author(s):

  • Microsoft

Nuget.CommandLine 6.14.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Nuget.CommandLine, run the following command from the command line or from PowerShell:

>

To upgrade Nuget.CommandLine, run the following command from the command line or from PowerShell:

>

To uninstall Nuget.CommandLine, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade nuget.commandline -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade nuget.commandline -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install nuget.commandline
  win_chocolatey:
    name: nuget.commandline
    version: '6.14.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'nuget.commandline' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '6.14.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller nuget.commandline
{
    Name     = "nuget.commandline"
    Version  = "6.14.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'nuget.commandline':
  ensure   => '6.14.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 14 May 2025.

Description

NuGet is the package manager for the Microsoft development platforms including .NET. NuGet gives you access to thousands of packages from other developers on nuget.org, and the NuGet tools let you create, share, and host packages of your own.

Notes


legal\LICENSE.txt
Copyright (c) .NET Foundation and Contributors.

All rights reserved.


Licensed under the Apache License, Version 2.0 (the "License"); you may not use
these files except in compliance with the License. You may obtain a copy of the
License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The embedded software have been downloaded from the software authors
website located at <https://www.nuget.org/downloads>
and can be verified by doing the following:

1. Download the following <https://dist.nuget.org/win-x86-commandline/v6.14.0/nuget.exe>
2. Extract the downloaded nupkg file by using one of the following methods
  - Use the 7z utility: '7z.exe'
  - Using the powershell function 'Expand-Archive'
3. Get the checksum using one of the following methods:
  - Using powershell function 'Get-FileHash'
  - Use chocolatey utility 'checksum.exe'
4. The checksums should match the following:

  checksum type: sha256
  checksum: 92DBED160DDEE0F64B901E907439E021211B428E57C089ECC12FC38DCC4BD9A5

The file 'LICENSE.txt' has been obtained from <https://github.com/NuGet/NuGet.Client/blob/bf52f1045992f21eee205dc9a8356a4ce1072b91/LICENSE.txt>
tools\nuget.exe
md5: C0C11B94F218F0C197F9878E79AD6E44 | sha1: 44911E25B29F02A929E3A7FEC6D81D69A75D4DFA | sha256: 92DBED160DDEE0F64B901E907439E021211B428E57C089ECC12FC38DCC4BD9A5 | sha512: 6BBB34BCF6273E8D5B9523E66EEBFF15E5434048CA8291130AA855E5C9A812CB8A4240F4B07DE63216F3E8A43DB5BDBFA427E290076A22D91F8E1BF994E7C3E4

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Nuget.CommandLine 6.13.2 56129 Wednesday, February 26, 2025 Approved
Nuget.CommandLine 6.13.1 11296 Saturday, February 15, 2025 Approved
Nuget.CommandLine 6.12.4 34 Friday, May 9, 2025 Approved
Nuget.CommandLine 6.12.2 31086 Tuesday, January 7, 2025 Approved
Nuget.CommandLine 6.12.1 36979 Wednesday, November 13, 2024 Approved
Nuget.CommandLine 6.11.1 37924 Monday, September 30, 2024 Approved
Nuget.CommandLine 6.11.0 39032 Wednesday, August 14, 2024 Approved
Nuget.CommandLine 6.10.2 5121 Friday, August 9, 2024 Approved
Nuget.CommandLine 6.10.1 20404 Wednesday, July 10, 2024 Approved
Nuget.CommandLine 6.10.0 48302 Wednesday, May 22, 2024 Approved
Nuget.CommandLine 6.9.1 68684 Tuesday, February 13, 2024 Approved
Nuget.CommandLine 6.8.1 178 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.8.0 60353 Wednesday, November 15, 2023 Approved
Nuget.CommandLine 6.7.1 128 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.7.0 66009 Thursday, August 10, 2023 Approved
Nuget.CommandLine 6.6.2 111 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.6.1 50902 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.6.0 42034 Thursday, May 18, 2023 Approved
Nuget.CommandLine 6.5.1 141 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.5.0 52031 Tuesday, February 28, 2023 Approved
Nuget.CommandLine 6.4.3 117 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.4.2 114 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.4.0 59783 Wednesday, November 9, 2022 Approved
Nuget.CommandLine 6.3.4 110 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.3.3 3605 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.3.1 19095 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.3.0 29728 Wednesday, August 10, 2022 Approved
Nuget.CommandLine 6.2.4 309 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.2.2 597 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.2.1 36564 Friday, June 17, 2022 Approved
Nuget.CommandLine 6.2.0 19033 Thursday, May 12, 2022 Approved
Nuget.CommandLine 6.1.0 37179 Friday, February 18, 2022 Approved
Nuget.CommandLine 6.0.6 117 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.0.5 110 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.0.3 158 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.0.2 266 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 6.0.0 44156 Tuesday, November 9, 2021 Approved
Nuget.CommandLine 6.0.0-preview5 1334 Tuesday, October 19, 2021 Approved
Nuget.CommandLine 6.0.0-preview4 544 Saturday, September 25, 2021 Approved
Nuget.CommandLine 6.0.0-preview3 1048 Saturday, August 14, 2021 Approved
Nuget.CommandLine 5.11.6 202 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 5.11.5 131 Friday, June 16, 2023 Approved
Nuget.CommandLine 5.11.3 139 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.11.2 171 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.11.0 41257 Saturday, August 14, 2021 Approved
Nuget.CommandLine 5.10.0 24083 Thursday, June 17, 2021 Approved
Nuget.CommandLine 5.10.0-preview2 993 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.9.3 210 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.9.2 7172 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.9.1 39604 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.9.0-preview2 1597 Thursday, December 10, 2020 Approved
Nuget.CommandLine 5.8.1 92086 Friday, January 15, 2021 Approved
Nuget.CommandLine 5.8.0 43732 Tuesday, November 10, 2020 Approved
Nuget.CommandLine 5.8.0-preview3 864 Tuesday, September 29, 2020 Approved
Nuget.CommandLine 5.8.0-preview2 1099 Friday, August 28, 2020 Approved
Nuget.CommandLine 5.8.0-preview1 453 Monday, August 17, 2020 Approved
Nuget.CommandLine 5.7.3 180 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.7.2 141 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.7.1 2150 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.7.0 51289 Monday, August 17, 2020 Approved
Nuget.CommandLine 5.7.0-preview4 606 Friday, July 17, 2020 Approved
Nuget.CommandLine 5.7.0-preview3 656 Wednesday, June 24, 2020 Approved
Nuget.CommandLine 5.7.0-preview1 1091 Tuesday, May 19, 2020 Approved
Nuget.CommandLine 5.6.0 59055 Tuesday, May 19, 2020 Approved
Nuget.CommandLine 5.6.0-preview6 488 Friday, May 8, 2020 Approved
Nuget.CommandLine 5.6.0-preview3 383 Thursday, April 30, 2020 Approved
Nuget.CommandLine 5.6.0-preview2 550 Friday, April 3, 2020 Exempted
Nuget.CommandLine 5.6.0-preview1 462 Tuesday, March 24, 2020 Approved
Nuget.CommandLine 5.5.1 34936 Friday, April 3, 2020 Approved
Nuget.CommandLine 5.5.0 7207 Tuesday, March 24, 2020 Approved
Nuget.CommandLine 5.5.0-preview2 1185 Saturday, January 25, 2020 Approved
Nuget.CommandLine 5.5.0-preview1 657 Wednesday, December 4, 2019 Approved
Nuget.CommandLine 5.4.0 101860 Wednesday, December 4, 2019 Approved
Nuget.CommandLine 5.3.1 24429 Saturday, October 26, 2019 Approved
Nuget.CommandLine 5.3.0 23833 Tuesday, September 24, 2019 Approved
Nuget.CommandLine 5.3.0-preview3 460 Thursday, September 5, 2019 Approved
Nuget.CommandLine 5.2.1 152 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.2.0 40746 Tuesday, July 23, 2019 Approved
Nuget.CommandLine 5.1.0 23658 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 5.1.0-preview3 570 Friday, May 10, 2019 Approved
Nuget.CommandLine 5.0.2 25655 Tuesday, May 14, 2019 Approved
Nuget.CommandLine 5.0.0-preview4 782 Friday, March 1, 2019 Approved
Nuget.CommandLine 5.0.0-preview3 483 Thursday, February 14, 2019 Approved
Nuget.CommandLine 5.0.0-preview2 520 Thursday, January 24, 2019 Approved
Nuget.CommandLine 4.9.6 211 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 4.9.5 155 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 4.9.4 4623 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.9.3 48651 Sunday, February 17, 2019 Approved
Nuget.CommandLine 4.9.2 29433 Wednesday, December 12, 2018 Approved
Nuget.CommandLine 4.9.1 6532 Wednesday, November 28, 2018 Approved
Nuget.CommandLine 4.9.0-rc1 457 Tuesday, November 13, 2018 Approved
Nuget.CommandLine 4.8.2 401 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.8.1 24471 Sunday, September 9, 2018 Approved
Nuget.CommandLine 4.7.3 408 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.7.1 16713 Friday, August 10, 2018 Approved
Nuget.CommandLine 4.6.4 352 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.6.2 36570 Saturday, April 7, 2018 Approved
Nuget.CommandLine 4.5.3 1117 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.5.1 25035 Wednesday, January 31, 2018 Approved
Nuget.CommandLine 4.5.0 1863 Tuesday, January 30, 2018 Approved
Nuget.CommandLine 4.4.3 352 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.4.1 246248 Tuesday, November 21, 2017 Approved
Nuget.CommandLine 4.3.1 1099 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.3.0 28195 Tuesday, August 22, 2017 Approved
Nuget.CommandLine 4.3.0-preview3-4168 592 Thursday, August 17, 2017 Approved
Nuget.CommandLine 4.1.0 23843 Monday, May 22, 2017 Approved
Nuget.CommandLine 4.0.0 417 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 3.5.0 11956 Monday, April 17, 2017 Approved
Nuget.CommandLine 3.4.4 4779 Tuesday, June 25, 2019 Approved
NuGet.CommandLine 3.4.4-rtm-final 5153 Wednesday, July 27, 2016 Approved
NuGet.CommandLine 3.4.3 45611 Tuesday, May 10, 2016 Approved
NuGet.CommandLine 3.3.0 19418 Monday, January 11, 2016 Approved
Nuget.CommandLine 3.2.0 404 Tuesday, June 25, 2019 Approved
NuGet.CommandLine 2.8.6 19828 Tuesday, July 28, 2015 Approved
NuGet.CommandLine 2.8.5 12654 Tuesday, April 7, 2015 Approved
NuGet.CommandLine 2.8.3 10110 Monday, December 29, 2014 Approved
NuGet.CommandLine 2.8.2 10080 Wednesday, June 25, 2014 Approved
NuGet.CommandLine 2.8.1 932 Wednesday, June 25, 2014 Approved
NuGet.CommandLine 2.8.0 4521 Tuesday, February 4, 2014 Approved
NuGet.CommandLine 2.7.3 2702 Friday, December 20, 2013 Approved
NuGet.CommandLine 2.7.2 740 Friday, December 20, 2013 Approved
NuGet.CommandLine 2.7.1 1516 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.7.0 731 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.6.1 714 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.5.0 12009 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.2.1 769 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.2.0 786 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.2 654 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.1 712 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.0 704 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.0.40001 769 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.0.0 732 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.40002 696 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.1 729 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.0 757 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.7.0 752 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.6.0 3185 Tuesday, September 17, 2013 Approved

This package has no dependencies.

Discussion for the Nuget.CommandLine Package

Ground Rules:

  • This discussion is only about Nuget.CommandLine and the Nuget.CommandLine package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Nuget.CommandLine, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus