NumberOfParentCategoriesToRollUp(Visual Studio 템플릿)
업데이트: 2007년 11월
새 프로젝트 대화 상자에 템플릿을 표시할 부모 범주의 수를 지정합니다.
<NumberOfParentCategoriesToRollUp>
1
</NumberOfParentCategoriesToRollUp>
특성 및 요소
다음 단원에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.
특성
없음
자식 요소
없음
부모 요소
요소 |
설명 |
---|---|
템플릿을 분류하고 새 프로젝트 또는 새 항목 추가 대화 상자에 템플릿을 표시하는 방법을 정의합니다. |
텍스트 값
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>