Home > Software design >  I can't open NuGet Package Manager for a project that i cloned from git
I can't open NuGet Package Manager for a project that i cloned from git

Time:08-05

I cloned my repo to git at work, but when I cloned it to my home computer, I wasn't able to reach nuget package manager, when i right click to the solution there is no option for nuget. Is there a way for me to get my git clone work like the original?

CodePudding user response:

Just close the visual studio. Open the project folder and then open .csproj file using visual studio. Then you will see context specific menus.

CodePudding user response:

Start Visual Studio or Visual Web Developer Express as an Administrator. In the Tools menu of Visual Studio, select Extension Manager. In the Extension Manager dialog box, click the Uninstall button for NuGet Package Manager. If NuGet-Based Package Manager doesn't appear, NuGet isn't installed. Follow the links below to troubleshoot NuGet-Based Package Manager

  1. https://docs.microsoft.com/en-us/nuget/consume-packages/package-restore-troubleshooting
  2. https://docs.microsoft.com/en-us/nuget/consume-packages/install-use-packages-visual-studio
  • Related