Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to download a previous version of a package with nuget, not the latest one?

share|improve this question
3  
Good question. I'm just getting into NuGet myself and was wondering about this too... – Andy McCluggage Apr 12 '11 at 11:19

2 Answers

up vote 269 down vote accepted

The powershell command Install-Package has a Version argument that can be used to specify a specific version.

Install-Package Common.Logging -Version 1.2.0

See the command reference for details.

Edit: In order to list versions of a package you can use the Get-Package command with the remote argument and a filter:

Get-Package -ListAvailable -Filter Common.Logging -AllVersions

By pressing tab after the version option in the Install-Package command, you get a list of the latest available versions.

share|improve this answer
6  
you can execute "Get-Package -ListAvailable" to lookup available versions and then use "Install-Package -Version" – Maciek Apr 12 '11 at 15:42
1  
Explicitly getting a list of available packages: follow @Maciek 's response. You should also notice that when typing a space after the -Version argument, the NuGet Console in VS will show you some autocomplete list with the available versions for that package. – Xavier Decoster Jul 7 '11 at 21:02
35  
I get the list of available versions with this: get-package -listavailable -filter Common.Logging -allversions – Endy Tjahjono Sep 6 '11 at 8:59
6  
For the benefit of noobs like me who have been using Nuget for a while but never done anything with it from the command line: To run the powershell commands that PHeiberg mentions you will want to bring up the Package Manager Console in Visual Studio - it's in Tools|Library Package Manager|Package Manager Console. – Jonathan Moffatt Oct 11 '11 at 23:54
4  
This command should also be available via the UI. Now if a publisher has a beta version, you can only get that latest version, which is sometimes unstable. – bgever Feb 12 '12 at 10:27
show 4 more comments

Browse to its page in the package index, eg. http://www.nuget.org/packages/Newtonsoft.Json/4.0.5

Then follow the install instructions given:

Install-Package Newtonsoft.Json -Version 4.0.5

Or to download the .nupkg file, install my Chrome extension Nutake which inserts a download link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.