NuGet Package Restore Not Working

Eric J. picture Eric J. · Jan 26, 2012 · Viewed 195.4k times · Source

I checked in a project on one computer, checked out on another, and find that the binaries installed by NuGet are missing. I could check them in to source control as well, but it looks like there's a better solution:

http://docs.nuget.org/docs/workflows/using-nuget-without-committing-packages

I followed those instructions, now have a .nuget folder where one should be, have the following entries in my .csproj file:

<RestorePackages>true</RestorePackages>
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />

and yet when I rebuild my solution, the missing packages are not restored.

What am I missing? How can I diagnose this problem?

Answer

Chris Marisic picture Chris Marisic · May 21, 2013

Note you can force package restore to execute by running the following commands in the nuget package manager console

Update-Package -Reinstall

Forces re-installation of everything in the solution.


Update-Package -Reinstall -ProjectName myProj

Forces re-installation of everything in the myProj project.

Note: This is the nuclear option. When using this command you may not get the same versions of the packages you have installed and that could be lead to issues. This is less likely to occur at a project level as opposed to the solution level.

You can use the -safe commandline parameter option to constrain upgrades to newer versions with the same Major and Minor version component. This option was added later and resolves some of the issues mentioned in the comments.

Update-Package -Reinstall -Safe