我正在使用Visual Studio項目模板,但在我的解決方案中,我有6個項目,並且我想將項目模板包含在所有項目中。品種代碼項目,這是一個:在Visual Studio模板中更改項目文件夾路徑
<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item">
<TemplateData>
<DefaultName>WebAPI.cs</DefaultName>
<Name>WebAPI</Name>
<Description><No description available></Description>
<ProjectType>CSharp</ProjectType>
<SortOrder>10</SortOrder>
<Icon>__TemplateIcon.png</Icon>
</TemplateData>
<TemplateContent>
<Folder Name="Base" TargetFolderName="Base">
<Folder Name="Interface" TargetFolderName="Interface">
<ProjectItem ReplaceParameters="true" TargetFileName="I$fileinputname$.cs">IPesquisarEstruturaSIIMN.cs</ProjectItem>
</Folder>
<ProjectItem ReplaceParameters="true" TargetFileName="$fileinputname$N.cs">PesquisarEstruturaSIIMN.cs</ProjectItem>
</Folder>
</TemplateContent>
</VSTemplate>
我的問題是我的問題是我如何改變我的項目模板的項目目標是什麼?
[這個MSDN頁面(https://msdn.microsoft.com/en-us/library/vstudio/y3kkate1%28v=vs.120%29.aspx)文件VS如何搜索自定義模板。您可以使用文件+導出模板進行練習。 –
我有一個選項,導出項目和模板..並在這兩個選項我沒有指示,包括項目在其他項目.. –