VSTemplate 要素 (Visual Studio テンプレート)
更新 : 2007 年 11 月
プロジェクト テンプレート、項目テンプレート、またはスタート キットに関するメタデータすべてを含みます。
<VSTemplate Type="TemplateType" Version="x.x.x">
<TemplateData> </TemplateData>
<TemplateContent> </TemplateContent>
...
</VSTemplate>
属性と要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
属性 |
説明 |
---|---|
Type |
テンプレートを プロジェクト テンプレート、または項目テンプレートとして特定します。この属性には、Project、または Item を指定できます。 |
Version |
テンプレートのバージョン番号を指定します。Visual Studio 2005 のテンプレートには、値が 2.0.0 である Version 属性があります。 |
子要素
要素 |
説明 |
---|---|
必須の要素 テンプレートをカテゴリに分類するデータを指定し、[新しいプロジェクト] ダイアログ ボックス、または [新しい項目の追加] ダイアログ ボックスでどのように表示させるかを定義します。 |
|
必須の要素 テンプレートの内容を指定します。 |
|
省略可能な要素 |
|
省略可能な要素 |
親要素
なし
解説
VSTemplate 要素は、.vstemplate ファイルのルート要素です。
使用例
Visual C# アプリケーションでのプロジェクト テンプレートのメタデータの例を次に示します。
<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>
</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>