我正在寻找有关如何使用Visual Studio 2010中的向导创建项模板的示例。 我的要求是当用户选择Add Item时,我想显示一个用户输入一些输入参数的对话框。然后在表单中按OK,我们生成一个我们想要添加到项目中的XML文件。
由于
答案 0 :(得分:0)
我建议你在这个链接中加入vsix
http://blogs.msdn.com/b/visualstudio/archive/2010/03/04/creating-and-sharing-project-item-templates.aspx
并将其重命名为zip文件并打开它以开始。但是项目模板中的xml本身并不复杂。看一下我刚用工具生成的经典asp文件。
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item">
<TemplateData>
<DefaultName>Classic ASP</DefaultName>
<Name>Classic ASP</Name>
<Description>Adds script tag import ref</Description>
<ProjectType>Web</ProjectType>
<ProjectSubType>VisualBasic</ProjectSubType>
<SortOrder>10</SortOrder>
<Icon>__TemplateIcon.ico</Icon>
</TemplateData>
<TemplateContent>
<References />
<ProjectItem TargetFileName="$fileinputname$.asp" ReplaceParameters="true">ClassicASP.asp</ProjectItem>
</TemplateContent>
</VSTemplate>