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

link|improve this question

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

2 Answers

up vote 90 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 -Remote -Filter Common.Logging
link|improve this answer
Is there a way to get all the versions of a package? – ryudice Apr 12 '11 at 14:10
3  
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
12  
I get the list of available versions with this: get-package -listavailable -filter Common.Logging -allversions – Endy Tjahjono Sep 6 '11 at 8:59
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 at 10:27
feedback

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.

link|improve this answer
4  
OR View | Other Windows | Package Manager Console =] – Leniel Macaferi Feb 2 at 15:46
feedback

Your Answer

 
or
required, but never shown

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