gpt4 book ai didi

visual-studio-2010 - 带有向导的 Visual Studio 项目模板

转载 作者:行者123 更新时间:2023-12-03 17:59:21 25 4
gpt4 key购买 nike

我正在寻找有关如何在 Visual Studio 2010 中使用向导创建项目模板的示例。
我的要求是当用户选择添加项目时,我想显示一个用户输入一些输入参数的对话框。然后在表单中按 OK 我们生成一个 XML 文件,我们要添加到项目中。

谢谢

最佳答案

我建议您在此链接中使用 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>

关于visual-studio-2010 - 带有向导的 Visual Studio 项目模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5096006/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com