Reputation: 1475
How do I add a new Template-type in the tree view of Visual Studio 2013 available templates?
If one clicks on New Project, on the right hand side pane of the next window which opens, is a list of the available templates offered by Visual Studio, such as those categorized under Visual C#, Visual C++ etc.
I wish to add a similar template in the tree view. Is there a way to achieve that?
Upvotes: 1
Views: 173
Reputation: 14047
Private templates go in (but adjust the C:\Users\{{username}}
as necessary):
C:\Users\{{username}}\Documents\Visual Studio 2013\Templates\ProjectTemplates\Visual C++ Project\
Public templates go subdirectories of:
{{VisualStudioInstallationDirectory}}\Common7\IDE\ProjectTemplates\{{Language}}
See here for more details.
Upvotes: 1