Reputation: 953
After I installed Visual Studio 2015, my NuGet package, and my visual studio 2013 this strange first when using "enable nuget package restore" visual studio breaks and freezes:
another thing is that the visual studio 2015 when creating any project also crash:
Upvotes: 0
Views: 443
Reputation: 10344
Visual Studio froze when I loaded a particular solution. By disabling nuget package manager it worked but I could no longer use nuget. I have removed the .vs folder from the solution and since visual studio is loading well! :-)
Maybe this can help...
Upvotes: 0
Reputation: 953
after I reasarch, Ifound:
2-Delete the folder in the directory showed below
Download the installation file of the older version of Nuget extension from this link: https://yadi.sk/d/BvJopnXOgF5rX
Extract the downloaded file to a folder on your machine.
Type this command to install it: VSIXInstaller [your_extracted_folder_path]\NuGet.Tools.vsix /admin
Example: VSIXInstaller c:\nuget14_VisualStudio\NuGet.Tools.vsix /admin
Press enter to start installing
after use visual studio..
all credits go to: https://tndhuy.wordpress.com/2015/05/14/solved-nuget-package-management-problem-in-visual-studio-2015-rc/
Upvotes: 0
Reputation: 28766
Enable nuget package restore
is obsolete, use the Automatic Package Restore instead instead. If you don't want automatic restore you can disable it in VS options.
Upvotes: 1