如何调用向导添加新的项目模板

时间:2018-11-13 15:09:38

标签: c# visual-studio wizard vsix itemtemplate

我有一个通过向导生成的项目模板。 现在,我想通过同一向导添加新的项目模板。 添加新项目模板时,我该如何调用向导。

示例:

Add to Project Template [添加到项目模板]

Wizard/Form [向导/表单]

Add the new Item Template [添加新的项目模板]

Show the wizard Template [显示向导模板]

show the new Item/class [显示新的商品/类别]

项目模板代码:

<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Item">
  <TemplateData>
    <DefaultName>class1.cs</DefaultName>
    <Name>Myproject class1</Name>
    <Description>Myproject Class</Description>
    <ProjectType>CSharp</ProjectType>
    <SortOrder>10</SortOrder>
    <Icon>Myprojectclass1.png</Icon>
  </TemplateData>
  <TemplateContent>
    <References>
      <Reference>
        <Assembly>System</Assembly>
      </Reference>
      <Reference>
        <Assembly>System.Linq</Assembly>
      </Reference>
      <Reference>
        <Assembly>System.Threading.Tasks</Assembly>
      </Reference>
    </References>
    <ProjectItem SubType="Code" TargetFileName="$fileinputname$.cs" ReplaceParameters="true">class1.cs</ProjectItem>
    <CustomParameters>  
        <CustomParameter Name="$username$" Value="$safeitemrootname$"/> 
        <CustomParameter Name="$rootnamespace$" Value="$safeitemrootname$"/>
        <CustomParameter Name="$registeredorganization$" Value="$safeitemrootname$"/>
    </CustomParameters>  
  </TemplateContent>
    <WizardExtension>
    <Assembly>MyProjectWizard, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=f7a1fcb8d457e160</Assembly>
    <FullClassName>MyProjectWizard.WizardImplementation</FullClassName>
  </WizardExtension>
</VSTemplate>

1 个答案:

答案 0 :(得分:0)

我已经找到了解决方案,如果没有key.snk,没有其他方法可以调用模板项。

因为调用项目模板时必须执行我的项目,所以我选择了创建的项目,唯一的方法是通过key.snk。

如果他们使用其他表格,请回答此问题,我想知道是否还有更多方法可以调用Item模板。