Extension could not be found. Please make sure the extension has been installed

After a bit of playing around I was able to figure out a solution to my problem: I can see that an extension is added to the experimental instance of Visual Studio when you successfully build the project (I’ve found no other way of installing the extension (VS2013)). If you try to build the project … Read more

Add project.json package references to a VSIX

I’m not sure I’m understanding your question correctly, but if you’re trying to install a Project Template via a VSIX and you want the project template to include all it’s nuget packages when you use it you could do something like this. Edit your Project Template’s xproj file and add the following lines: <ItemGroup> <None … Read more

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