Is there a way to download a previous version of a package with nuget, not the latest one?
feedback
|
|
The powershell command Install-Package has a Version argument that can be used to specify a specific version.
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:
| |||||||||||||||||
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. | |||||
feedback
|