简体   繁体   中英

NuGet error restoring packages

Suddenly today I click Rebuild on my sln and get...

Error (~10 similar errors):

Severity Code Description Project File Line Suppression State Error NuGet Package restore failed for project Core: Unable to find version '4.0.11' of package 'System.Diagnostics.Debug'.. 0

System.Diagnostics.Debug 4.0.11 exists.

Nuget version: 3.3.0.212

Other stuff:

  • At PM console: Install-Package System.Diagnostics.Debug -Version 4.0.11

Error:

Install-Package : Some NuGet packages are missing from the solution. The packages need to be restored in order to build the dependency graph. Restore the packages before performing any operations.

  • <RestorePackages> is not listed in the .sln. So I don't think this thing is configured the old way .

This happened shortly after running windows update. I updated NuGet to 3.4 (from 3.3) and the issue resolved itself.

in Visual Studio > Tools > Extensions and Updates > Visual Studio Gallery > Nuget Package Manager > Update

You need to check you have checked the “Allow NuGet to download missing packages” and “Automatically check for missing packages during build in Visual Studio” options under the VS Tools menu -> Options -> NuGet Packages Manager -> General tab. 在此处输入图片说明

If the options are checked but the problem still exist, you need to uninstall all the installed NuGet and then reinstall them again.

And if uninstall and reinstall could not resolve this issue, you can manually remove the dependency with following steps which refer to this thread :

1.Close Visual Studio (not a hard requirement, but helpful). 2.In text editor, remove dependency from packages.config. 3.Remove package from packages/ directory. 4.In text editor, remove all references to package from .csproj file. 5.Start Visual Studio. 6.Reinstall package through NuGet.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM