Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 - Uninstall NuGet

Tags:

How do you uninstall NuGet from Visual Studio 2010?

I tried to open Visual Studio 2010 with 'Run as Administrator', but the Uninstall option is not available for uninstalling the NuGet extension from VS2010.

like image 609
Sannithi Yashwanth Avatar asked Mar 21 '12 10:03

Sannithi Yashwanth


People also ask

How do I uninstall NuGet Visual Studio 2010?

Usually to uninstall NuGet in VS2010 you need to run as an administrator, open Tools->Extension Manager. In Installed, select NuGet and click Uninstall.

How do I uninstall NuGet Visual Studio?

Uninstall a packageIn Solution Explorer, right-click either References or the desired project, and select Manage NuGet Packages.... Select the Installed tab. Select the package to uninstall (using search to filter the list if necessary) and select Uninstall.

How do I completely remove a NuGet package?

In the solution, right click on References and Manage NuGet packages, find the "Installed" tab in the upper right. Hover over the package and the "X" will appear to uninstall.


2 Answers

Usually to uninstall NuGet in VS2010 you need to run as an administrator, open Tools->Extension Manager. In Installed, select NuGet and click Uninstall.

If that fails you can run this command :

vsixinstaller.exe /uninstall:NuPackToolsVsix.Microsoft.67e54e40-0ae3-42c5-a949-fddf5739e7a5

(vsixinstaller can be found under [program files]\Microsoft Visual Studio 10.0\Common7\IDE )

like image 58
Alexandre Dion Avatar answered Sep 21 '22 16:09

Alexandre Dion


Open Extension Manager inside Visual Studio, select "Installed" on the left, you'll find NuGet in the list and the option to remove it.

like image 45
Vladimir Perevalov Avatar answered Sep 19 '22 16:09

Vladimir Perevalov