Visual Studio 2012-s custom project template not visible

偶尔善良 提交于 2021-02-07 05:53:08

问题


I completed the custom template project tutorial part I from msdn and got a basic project structure working and visible in the File - New - Project menu. Then i advanced to msdn part II and can't get past "Testing a Visual Studio Template" part.

When i add the .vstemplate file in the custom project template folder, set the Build Action of all the files under my custom project template folder to ZipProjectand change the 2nd and 6th parameter of the [ProvideProjectFactory] to null and ".\\NullPath"respectively, the File - New - Project doesn't display the custom template in the dialog anymore.

The template zip folder gets placed in the correct folder and i can open the custom projects previously created (this wouldn't work, if the project template wasn't installed), but i can't create any new custom projects as they aren't visible.

Does anybody have experience with creating custom project templates ?


回答1:


When creating a Visual Studio 2012 extension, you can actually create a separate project for each project template you'd like to ship. The template for creating these projects is located at the following path in the New Project wizard. You'll need one project for each template you are creating.

Visual C# → Extensibility → C# Project Template

Your main extension project (the one that produces the VSIX file) will then need to do the following:

  1. Add a reference to the project for your new project template
  2. Select the reference and press F4 to jump to the Properties window. Make sure the following properties are set.
    • Output Groups Included in VSIX: TemplateProjectOutputGroup;
    • Template Type: Project
    • VSIX Sub Path: ProjectTemplates
    • Reference Output Assembly: False
  3. Open your source.extension.vsixmanifest and add the following under <Content> (You only need this once, regardless of the number of project templates are referencing.)
    • <ProjectTemplate>ProjectTemplates</ProjectTemplate>
  4. Change the 6th argument of [ProvideProjectFactory(... to "ProjectTemplates".

Notes:

  • After this process, you will no longer have a Templates folder in your main project.


来源:https://stackoverflow.com/questions/15606619/visual-studio-2012-s-custom-project-template-not-visible

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!