where are custom extensions installed in visual studio?

Extensions (if deployed as VSIX) will be installed to the userĀ“s profile; each extension will be installed into a folder with a random name, for instance: %LocalAppData%\Microsoft\VisualStudio\12.0\Extensions\s5lxc0ne.1kp If you want to obtain the package installation path at runtime, you can obtain that information from the assembly that defines the Package class. static string GetAssemblyLocalPathFrom(Type type) … Read more

How to debug Visual Studio extensions

Visual Studio Extensions can be debugged like any other application. You just need to setup the debug experience to launch devenv with the loaded extension. Try the following Right click on the project and select Properties Go to the Debug Tab Click on the radio button for Start External Program. Point it to the devenv.exe … Read more