In the new version of Visual Studio, if I only use MEF support for my extensions, is there a way to disable my component in a debug environment? (IE, one debugging VS with no component, one debugee VS with the component). This was a very normal scenario with regular/experimental hives, and it was really useful. I can think of 2 cases where this will be needed:
1) If my component completely crashes VS (already done that!), there is no way to debug to see how far it'll get before crashing
2) If my component modifies the behaviour of the language in which the component is developed (a C# component modifying the C# editor), I may end up being unable to code the component without removing it first: code - close vs - test - close vs - del component - code.