NumberOfParentCategoriesToRollUp(Visual Studio 模板)

指定将在**“新建项目”**对话框中显示此模板的父类别的数目。

<NumberOfParentCategoriesToRollUp>
    1
</NumberOfParentCategoriesToRollUp>

特性和元素

以下几节描述了属性、子元素和父元素。

特性

无。

子元素

无。

父元素

元素

说明

TemplateData

将此模板分类并定义此模板在“新建项目”“添加新项”对话框中的显示方式。

文本值

需要一个 integer 值。

该值指定将在**“新建项目”**对话框中显示此模板的父类别的数目。

备注

NumberOfParentCategoriesToRollUp 是可选元素。

示例

此示例演示 Visual C# Windows 应用程序的元数据。 如果具有此元数据的模板放置在低于顶级 Visual C# 节点两个文件夹级别的位置上,则该模板将出现在**“新建项目”**对话框中的顶级节点中。 如果没有设置 NumberOfParentCategoriesToRollUp,则该模板仅出现在它实际位于的节点中。

<VSTemplate Type="Project" Version="2.0.0"
    xmlns="https://schemas.microsoft.com/developer/vstemplate/2005">
    <TemplateData>
        <Name>My template</Name>
        <Description>A basic starter kit</Description>
        <Icon>TemplateIcon.ico</Icon>
        <ProjectType>CSharp</ProjectType>
        <NumberOfParentCategoriesToRollUp>2</NumberOfParentCategoriesToRollUp>
    </TemplateData>
    <TemplateContent>
        <Project File="MyStarterKit.csproj">
            <ProjectItem>Form1.cs<ProjectItem>
            <ProjectItem>Form1.Designer.cs</ProjectItem>
            <ProjectItem>Program.cs</ProjectItem>
            <ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
            <ProjectItem>Properties\Resources.resx</ProjectItem>
            <ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
            <ProjectItem>Properties\Settings.settings</ProjectItem>
            <ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
        </Project>
    </TemplateContent>
</VSTemplate>

请参见

参考

Visual Studio 模板架构参考

其他资源

Visual Studio 模板