NumberOfParentCategoriesToRollUp (Visual Studio テンプレート)
[新しいプロジェクト] ダイアログ ボックスに表示されるテンプレートの親カテゴリの数を指定します。
<NumberOfParentCategoriesToRollUp>
1
</NumberOfParentCategoriesToRollUp>
属性および要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
なし。
子要素
なし。
親要素
要素 |
説明 |
---|---|
テンプレートをカテゴリに分類し、[新しいプロジェクト] ダイアログ ボックス、または [新しい項目の追加] ダイアログ ボックスでどのように表示させるかを定義します。 |
テキスト値
integer 値は必須です。
この値は、[新しいプロジェクト] ダイアログ ボックスに表示されるテンプレートの親カテゴリの数を指定します。
解説
NumberOfParentCategoriesToRollUp は、省略可能な要素です。
使用例
Visual C# Windows アプリケーションでのメタデータの例を次に示します。 このメタデータを含むテンプレートが最上位の Visual C# ノードより 2 つ下のフォルダーに配置されている場合、テンプレートは、[新しいプロジェクト] ダイアログ ボックスの最上位のノードに表示されます。 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>