vico
vico

Reputation: 18171

Where to place NuGet

I have downloaded Google WEB API sample project. Solution explorer contains .nuget folder that is missing on my machine. NuGet itself is installed on my system. Currently build project rices error:

Error 1 This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is C:\pro\gplus-quickstart-csharp-master\.nuget\NuGet.targets. C:\pro\gplus-quickstart-csharp-master\gplus-quickstart-csharp\gplus-quickstart-csharp.csproj 196 5 gplus-quickstart-csharp

enter image description here

If I remove .nuget folder I have the same error.

How to configure NuGet in my system to make project build?

Upvotes: 0

Views: 147

Answers (1)

auo
auo

Reputation: 572

Have you tried Tools -> Options -> Nuget Package Manager and then selecting Allow Nuget to download missing packages?

Then rebuild your solution

Upvotes: 1

Related Questions