2

i have (at least) two addins installed in Visual Studio (2010 (Professional)). i would like to temporarily disable them.

How can i manage addins in Visual Studio 2010?


i tried using the Add-in Manager (Tools -> Add-in Manager...):

enter image description here

But neither of my (at least) two addins appear.

How can i manage addins in Visual Studio 2010?


Looking at MSDN:

How to: Deactivate and Remove an Add-In

When you finish using an add-in, you can unload it from Visual Studio by clearing the check box next to its name in Add-in Manager.

By following the steps in this topic, you can remove the add-in permanently so that it no longer appears in Add-in Manager and its command no longer appears on the Tools menu or the Visual Studio toolbar.

The Add-in Manager is located on the Tools menu.

Ian Boyd
  • 246,734
  • 253
  • 869
  • 1,219

1 Answers1

3

In Visual Studio 2010, Microsoft has added another form of 'addins' (how we used to call them).
Now, we have the Visual Studio Integration Package that are not COM based like addins.
This has prompted the creation of a different menu where you handle these kind of extensions. The main menu is still Tools but a specific submenu called Extension Manager has been added

More information on this argument could be found here

"Visual Studio Integration Package" vs "Visual Studio Add-in": what is the difference?

and here

Differences between Visual Studio 2010 add-in manager and extension manager

Community
  • 1
  • 1
Steve
  • 213,761
  • 22
  • 232
  • 286