本文介绍了多项目模板未显示在VS2015中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 创建多项目模板时,将其放入"Visual Studio 2015 \Templates \ProjectTemplates"中。路径,它永远不会在visual studio的新项目对话框中显示为选区。 我将两个组成项目分别导出为模板,将内容提取到文件夹,添加常用的.vstemplate将这些文件夹放在这两个文件夹之上,并将整个文件包含在.zip文件中。 单个项目模板显示正常,我不知道挂断的位置。 这是解决方案级别.vstemplate。 < VSTemplate Version =" 3.0.0"类型=" ProjectGroup"      的xmlns = QUOT; HTTP://schemas.microsoft.com/developer/vstemplate/2005">       < TemplateData>           <名称>&WebUITemplate LT; /名称>           <说明> Web UI解决方案< / Description>           < ProjectType> Web< / ProjectType>    &NBSP;&NBSP;&NBSP;  < ProjectSubType> CSharp< / ProjectSubType>    &NBSP;&NBSP;&NBSP;  < CreateNewFolder> true< / CreateNewFolder>     < / TemplateData>       < TemplateContent>           < ProjectCollection>               < ProjectTemplateLink ProjectName =" $ safeprojectname $ .Web">                   WebUITemplate \ MyTemplate.vstemplate              < / ProjectTemplateLink>               < ProjectTemplateLink ProjectName =" $ safeprojectname $ .Tests">                   WebUITemplate.Tests \ MyTemplate.vstemplate              < / ProjectTemplateLink>           < / ProjectCollection>       < / TemplateContent>   < / VSTemplate>  解决方案 When I create a multi project template, and put it in the "Visual Studio 2015\Templates\ProjectTemplates" path, it never shows up as a selection in the new project dialog in visual studio.I export both the constituent projects separately as templates, extract the contents to folders, add the common .vstemplate file above both those folders and include the whole mess in a .zip file.Single project templates show up fine, I'm not sure where the hangup is though.Here is the solution level .vstemplate.<VSTemplate Version="3.0.0" Type="ProjectGroup"      xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">      <TemplateData>          <Name>WebUITemplate</Name>          <Description>Web UI solution</Description>          <ProjectType>Web</ProjectType>        <ProjectSubType>CSharp</ProjectSubType>        <CreateNewFolder>true</CreateNewFolder>    </TemplateData>      <TemplateContent>          <ProjectCollection>              <ProjectTemplateLink ProjectName="$safeprojectname$.Web">                  WebUITemplate\MyTemplate.vstemplate              </ProjectTemplateLink>              <ProjectTemplateLink ProjectName="$safeprojectname$.Tests">                  WebUITemplate.Tests\MyTemplate.vstemplate              </ProjectTemplateLink>          </ProjectCollection>      </TemplateContent>  </VSTemplate>  解决方案 这篇关于多项目模板未显示在VS2015中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-07 09:53