Nuget - Don't see allow nuget to download missing packages during build

后端 未结 4 1070
走了就别回头了
走了就别回头了 2020-12-23 19:13

I get a message saying the following:

Error 1 Package restore is disabled by default. To give consent, open the Visual Studio Options dialog,

相关标签:
4条回答
  • The option to give consent in the UI has been added with NuGet Package Manager 1.8. It's the 3rd item under Tools-> Options-> Package Manager-> General : "Package Restore : Allow NuGet to download missing packages during build".

    Please make sure NuGet is up-to-date in Tools->Extension Manager.

    Alternatively you can give consent by setting the EnableNuGetPackageRestore Environment variable to true.

    0 讨论(0)
  • 2020-12-23 19:48

    I am using Visual Studio 2010 and NuGet 2.0.

    Someone had checked in a solution that used NuGet for various packages. When I checked out the solution and built it, I got the same errors. What's more, when I viewed the NuGet Package Manager from the Tools -> Options window, the Package Restore already had the appropriate check boxes checked.

    I tried clicking the Clear Package Cache button. After doing that, everything built correctly.

    enter image description here

    0 讨论(0)
  • 2020-12-23 19:49

    I found I needed an extra couple of steps to get it to download the packages

    1. Check Allow NuGet to download missing packages during build

    2. Check Always show solution in Projects and Solutions

    3. Right click on solution and Enable NuGet Package Restore

    4. Open Manage NuGet Packages and click Restore

    0 讨论(0)
  • 2020-12-23 19:49

    I did not seem to have the "Package Manager" node under Tools->Options [this was in Visual Studio 2013 :-)]. To get that node in there, I browsed to Tools -> Extensions and Updates and searched for nuget. Installing "NuGet for Visual Studio 2013" got me the node and the option to allow package restore!

    0 讨论(0)
提交回复
热议问题