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?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 10 down vote accepted

You can use nuget.exe to restore your packages. Run the following command for each project.

nuget install packages.config

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.

link|improve this answer
1  
Is there some simple command within Visual Studio to do this? I have auto-restore enabled for solution but "Build" still gives me lots of error because of missing references (packages have not been restored from packages.config). – Borek Mar 9 at 19:54
I do not think so without installing something like NuGet Power Tools - github.com/davidfowl/NuGetPowerTools. However that will do essentially the same thing as the auto-restore you already have. – Matt Ward Mar 10 at 17:06
feedback

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:

PM> Install-Package NuGetPowerTools
PM> Enable-PackageRestore

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

Right click on the Solution node in Solution Explorer and select Enable NuGet Package Restore.

Read this article for more details.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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