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

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?

share|improve this question
2  
Please consider changing the accepted answer, as NuGet is now much more integrated into Visual Studio and there are easier ways to solve this problem. – skolima Nov 22 '12 at 11:16

4 Answers

up vote 40 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.

share|improve this answer
2  
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 '12 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 '12 at 17:06
This also works for installing packages in general, not just to "restore" them (no big technical difference, as restoring IS installing; but it's not restricted to people who want to use the solution package restore feature). You do, however, need to set an environment variable EnableNuGetPackageRestore for this purpose. I set it in my psake script before calling "nuget install packages.config" like so: $env:EnableNuGetPackageRestore = "true". This sets the var for the PS process and the processes it spawns, without affecting the machine-wide variables (and possibly other builds). – galaktor Mar 7 at 7:41
Restoring is not quite the same as installing. Installing a package from the command line will not change your project so things like assembly references will not be added. – Matt Ward Mar 8 at 11:12

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.

share|improve this answer
1  
The updated answer here is going to be the best solution for most people as they won't have nuget.exe (but will have nuget installed into Visual Studio). – Tod Thomson Sep 12 '12 at 7:36
But the package restore actually downloads nuget.exe for you – Konstantin Nov 20 '12 at 10:46
I just did this. and it still fails the build saying references are missing. Build says all packages are already installed.I went to the solution/packages folder deleted the package(s) in question and it downloaded them and started working. – Maslow Apr 12 at 19:17

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.

# read the packages.config file into an XML object
[xml]$packages = gc packages.config

# install each package 
$packages.packages.package | % { Install-Package -id $($_.id) -Version $($_.version) }
share|improve this answer
2  
I tried each of the answers above and could not get them to work on one of my solutions. But a variation of this one did. $packages.packages.package | % { Update-Package -reinstall -id $($_.id) } – PerryJ Feb 1 at 19:06
nuget package restore is a nightmare if you use multiple solutions on same csproj... i applaud this answer! – felickz Feb 21 at 18:29
This didn't fix my problem but it sure made me feel better! – Scott Beeson Apr 2 at 20:05

Update-Package –Project ProjectName Updates all packages in the specified project

Updating All Packages

share|improve this answer
4  
Do NOT do this. This will not make the project references match packages.config, it will update packages.config to match the newest versions of all packages in the repo and then update your references, possibly breaking your project. – Avi Cherry Feb 15 at 21:29

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.