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:

1,807,230

Downloads of v 5.0.0-preview2:

406

Last Update:

24 Jan 2019

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

nuget dot.net microsoft foss cross-platform

Nuget.CommandLine

This is a prerelease version of Nuget.CommandLine.

  • 1
  • 2
  • 3

5.0.0-preview2 | Updated: 24 Jan 2019

Downloads:

1,807,230

Downloads of v 5.0.0-preview2:

406

Maintainer(s):

Software Author(s):

  • Microsoft

Nuget.CommandLine 5.0.0-preview2

This is a prerelease version of Nuget.CommandLine.

  • 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'" --version="'5.0.0-preview2'" --prerelease [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'" --version="'5.0.0-preview2'" --prerelease
$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: '5.0.0-preview2'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

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  '5.0.0-preview2'
  options  '--prerelease'
end

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


cChocoPackageInstaller nuget.commandline
{
    Name        = "nuget.commandline"
    Version     = "5.0.0-preview2"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'nuget.commandline':
  ensure          => '5.0.0-preview2',
  install_options => ['--prerelease'],
  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 24 Jan 2019.

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

This package contains preview and released and recommended versions.


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.
tools\nuget.exe
md5: B6AB9DA73E0643AAD02DF1D16EC980C8 | sha1: E5CA90128BE8286458E9FA812D5F26180D895192 | sha256: F2DE96CB8D13358AE836565F1E03B50491E29CBDBD5C5C081BD758182131B77C | sha512: 936AF8F68D50E19BCA9F000518DDEA5F94F0ADBFC9AB44CA268F6D4505658E6E09DBEC9FCD5436E04B0B4B81C1B052D23ED8A8BA2222363AC63D9F2E23B90E9A
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/v5.0.0-preview2/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: F2DE96CB8D13358AE836565F1E03B50491E29CBDBD5C5C081BD758182131B77C

The file 'LICENSE.txt' has been obtained from <https://github.com/NuGet/NuGet.Client/blob/bf52f1045992f21eee205dc9a8356a4ce1072b91/LICENSE.txt>

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.8.1 23 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.8.0 54056 Wednesday, November 15, 2023 Approved
Nuget.CommandLine 6.7.1 14 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.7.0 59211 Thursday, August 10, 2023 Approved
Nuget.CommandLine 6.6.2 10 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.6.1 45874 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.6.0 39662 Thursday, May 18, 2023 Approved
Nuget.CommandLine 6.5.1 47 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.5.0 51303 Tuesday, February 28, 2023 Approved
Nuget.CommandLine 6.4.3 12 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.4.2 30 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.4.0 58609 Wednesday, November 9, 2022 Approved
Nuget.CommandLine 6.3.4 12 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.3.3 657 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.3.1 18677 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.3.0 29499 Wednesday, August 10, 2022 Approved
Nuget.CommandLine 6.2.4 119 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.2.2 337 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.2.1 28105 Friday, June 17, 2022 Approved
Nuget.CommandLine 6.2.0 18851 Thursday, May 12, 2022 Approved
Nuget.CommandLine 6.1.0 36717 Friday, February 18, 2022 Approved
Nuget.CommandLine 6.0.6 12 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 6.0.5 28 Wednesday, June 14, 2023 Approved
Nuget.CommandLine 6.0.3 54 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 6.0.2 181 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 6.0.0 43949 Tuesday, November 9, 2021 Approved
Nuget.CommandLine 6.0.0-preview5 1228 Tuesday, October 19, 2021 Approved
Nuget.CommandLine 6.0.0-preview4 440 Saturday, September 25, 2021 Approved
Nuget.CommandLine 6.0.0-preview3 926 Saturday, August 14, 2021 Approved
Nuget.CommandLine 5.11.6 12 Wednesday, February 14, 2024 Approved
Nuget.CommandLine 5.11.5 35 Friday, June 16, 2023 Approved
Nuget.CommandLine 5.11.3 59 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.11.2 68 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.11.0 39985 Saturday, August 14, 2021 Approved
Nuget.CommandLine 5.10.0 23737 Thursday, June 17, 2021 Approved
Nuget.CommandLine 5.10.0-preview2 893 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.9.3 64 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.9.2 61 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.9.1 33909 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.9.0-preview2 1487 Thursday, December 10, 2020 Approved
Nuget.CommandLine 5.8.1 84357 Friday, January 15, 2021 Approved
Nuget.CommandLine 5.8.0 42979 Tuesday, November 10, 2020 Approved
Nuget.CommandLine 5.8.0-preview3 742 Tuesday, September 29, 2020 Approved
Nuget.CommandLine 5.8.0-preview2 955 Friday, August 28, 2020 Approved
Nuget.CommandLine 5.8.0-preview1 351 Monday, August 17, 2020 Approved
Nuget.CommandLine 5.7.3 52 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 5.7.2 44 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.7.1 2070 Thursday, April 15, 2021 Approved
Nuget.CommandLine 5.7.0 50983 Monday, August 17, 2020 Approved
Nuget.CommandLine 5.7.0-preview4 512 Friday, July 17, 2020 Approved
Nuget.CommandLine 5.7.0-preview3 548 Wednesday, June 24, 2020 Approved
Nuget.CommandLine 5.7.0-preview1 965 Tuesday, May 19, 2020 Approved
Nuget.CommandLine 5.6.0 56812 Tuesday, May 19, 2020 Approved
Nuget.CommandLine 5.6.0-preview6 375 Friday, May 8, 2020 Approved
Nuget.CommandLine 5.6.0-preview3 270 Thursday, April 30, 2020 Approved
Nuget.CommandLine 5.6.0-preview2 432 Friday, April 3, 2020 Exempted
Nuget.CommandLine 5.6.0-preview1 361 Tuesday, March 24, 2020 Approved
Nuget.CommandLine 5.5.1 34594 Friday, April 3, 2020 Approved
Nuget.CommandLine 5.5.0 7084 Tuesday, March 24, 2020 Approved
Nuget.CommandLine 5.5.0-preview2 1063 Saturday, January 25, 2020 Approved
Nuget.CommandLine 5.5.0-preview1 553 Wednesday, December 4, 2019 Approved
Nuget.CommandLine 5.4.0 101451 Wednesday, December 4, 2019 Approved
Nuget.CommandLine 5.3.1 24291 Saturday, October 26, 2019 Approved
Nuget.CommandLine 5.3.0 23367 Tuesday, September 24, 2019 Approved
Nuget.CommandLine 5.3.0-preview3 370 Thursday, September 5, 2019 Approved
Nuget.CommandLine 5.2.1 47 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 5.2.0 40337 Tuesday, July 23, 2019 Approved
Nuget.CommandLine 5.1.0 23501 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 5.1.0-preview3 472 Friday, May 10, 2019 Approved
Nuget.CommandLine 5.0.2 25513 Tuesday, May 14, 2019 Approved
Nuget.CommandLine 5.0.0-preview4 667 Friday, March 1, 2019 Approved
Nuget.CommandLine 5.0.0-preview3 365 Thursday, February 14, 2019 Approved
Nuget.CommandLine 5.0.0-preview2 406 Thursday, January 24, 2019 Approved
Nuget.CommandLine 4.9.6 94 Wednesday, October 12, 2022 Approved
Nuget.CommandLine 4.9.5 49 Tuesday, June 14, 2022 Approved
Nuget.CommandLine 4.9.4 3819 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.9.3 48482 Sunday, February 17, 2019 Approved
Nuget.CommandLine 4.9.2 29298 Wednesday, December 12, 2018 Approved
Nuget.CommandLine 4.9.1 6422 Wednesday, November 28, 2018 Approved
Nuget.CommandLine 4.9.0-rc1 369 Tuesday, November 13, 2018 Approved
Nuget.CommandLine 4.8.2 285 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.8.1 24323 Sunday, September 9, 2018 Approved
Nuget.CommandLine 4.7.3 260 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.7.1 16547 Friday, August 10, 2018 Approved
Nuget.CommandLine 4.6.4 244 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.6.2 36364 Saturday, April 7, 2018 Approved
Nuget.CommandLine 4.5.3 932 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.5.1 24758 Wednesday, January 31, 2018 Approved
Nuget.CommandLine 4.5.0 1696 Tuesday, January 30, 2018 Approved
Nuget.CommandLine 4.4.3 254 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.4.1 243678 Tuesday, November 21, 2017 Approved
Nuget.CommandLine 4.3.1 788 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 4.3.0 27619 Tuesday, August 22, 2017 Approved
Nuget.CommandLine 4.3.0-preview3-4168 489 Thursday, August 17, 2017 Approved
Nuget.CommandLine 4.1.0 23670 Monday, May 22, 2017 Approved
Nuget.CommandLine 4.0.0 305 Tuesday, June 25, 2019 Approved
Nuget.CommandLine 3.5.0 11806 Monday, April 17, 2017 Approved
Nuget.CommandLine 3.4.4 2457 Tuesday, June 25, 2019 Approved
NuGet.CommandLine 3.4.4-rtm-final 5003 Wednesday, July 27, 2016 Approved
NuGet.CommandLine 3.4.3 45421 Tuesday, May 10, 2016 Approved
NuGet.CommandLine 3.3.0 19274 Monday, January 11, 2016 Approved
Nuget.CommandLine 3.2.0 309 Tuesday, June 25, 2019 Approved
NuGet.CommandLine 2.8.6 19723 Tuesday, July 28, 2015 Approved
NuGet.CommandLine 2.8.5 12393 Tuesday, April 7, 2015 Approved
NuGet.CommandLine 2.8.3 10007 Monday, December 29, 2014 Approved
NuGet.CommandLine 2.8.2 10003 Wednesday, June 25, 2014 Approved
NuGet.CommandLine 2.8.1 847 Wednesday, June 25, 2014 Approved
NuGet.CommandLine 2.8.0 4446 Tuesday, February 4, 2014 Approved
NuGet.CommandLine 2.7.3 2607 Friday, December 20, 2013 Approved
NuGet.CommandLine 2.7.2 660 Friday, December 20, 2013 Approved
NuGet.CommandLine 2.7.1 1399 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.7.0 648 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.6.1 634 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.5.0 11900 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.2.1 664 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.2.0 683 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.2 571 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.1 610 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.1.0 623 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.0.40001 679 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 2.0.0 644 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.40002 617 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.1 625 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.8.0 658 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.7.0 638 Tuesday, September 17, 2013 Approved
NuGet.CommandLine 1.6.0 3090 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