BuildProjectOnLoad (Visual Studio テンプレート)
作成した直後に、プロジェクトをビルドするかどうかを指定します。
<BuildProjectOnLoad> true/false </BuildProjectOnLoad>
属性および要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
なし。
子要素
なし。
親要素
要素 |
説明 |
---|---|
テンプレートをカテゴリに分類し、[新しいプロジェクト] ダイアログ ボックス、または [新しい項目の追加] ダイアログ ボックスでどのように表示させるかを定義します。 |
テキスト値
テキスト値が必要です。
テキストは、作成した直後にするかどうかを示すプロジェクトをビルドするには true または falseである必要があります。
解説
BuildProjectOnLoad は省略可能な属性です。既定値 false です。
使用例
Visual C# テンプレートでのメタデータの例を次に示します。
<VSTemplate Type="Project" Version="3.0.0"
xmlns="https://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>My template</Name>
<Description>A basic template</Description>
<Icon>TemplateIcon.ico</Icon>
<ProjectType>CSharp</ProjectType>
<BuildProjectOnload>true</BuildProjectOnLoad>
</TemplateData>
<TemplateContent>
<Project File="MyTemplate.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>
参照
関連項目
TemplateContent 要素 (Visual Studio テンプレート)