I have a solution with multiple projects in it. Most of the third party references are missing, yet there are packages.config file for each project. How do I get NuGet to install/update all the packages needed? Does this need to be done via command line for each project?
|
|
|||||
|
|
You can use nuget.exe to restore your packages. Run the following command for each project.
This will pull down the packages. Your project files will not be modified however when running this command so the project should already have a reference to the NuGet packages. If this is not the case then you can use Visual Studio to install the packages. You can also add a pre-build task to your project to restore packages automatically when you compile your project. To update the packages to new versions you can use Visual Studio. NuGet 1.4 has made this much easier by adding a new feature to allow you to update all packages in a solution in one step. |
|||||||||||||
|
|
There is another, newer and quicker way to do this from within Visual Studio. Check out this post by David Ebbo, and reference the comments section if you run into trouble. Basically, you do the following in Package Manager prompt:
Afterwards, when you build your solution the packages will be automatically installed if they're missing. Update: This functionality is built into Nuget 1.6 with visual studio integration so you don't even need to install NuGetPowerTools or type commands. All you have to do is
Read this article for more details. |
|||||||||
|
|
Here's another solution if you are using website projects, or don't want to enable NuGet Package restore. You can use the package manager console to enumerate all the packages in the package.config file and re-install them.
|
|||||||||
|
|
Update-Package –Project ProjectName Updates all packages in the specified project |
|||||
|