I have developed a VSPackage for Visual Studio. I followed all the instructions in these walkthroughs:
Part 1 - Creating a Basic Project System
Part 2 - Creating a Basic Project System
Everything works fine when I debug the project: I see a new project type defined by me under the Installed Templates.
Problem
However when I deploy this VSIX installer to the Visual Studio Gallery or install it manually, I don't see the template and the new project type.
Question
How can I make this work when deploying?
Note
What I want is a VSPackage that when you install, it will add a new project type and adds some other menu commands to the menu bar.
I solved this doing these steps by:
.zip
template from thebin/debug
folder to my project in Visual Studio..vsixmanifest
file..vsix
file to the Visual Studio Gallery.Note These steps were not mentioned in the MSDN walkthroughs.