次の方法で共有


TemplateContent 要素 (Visual Studio テンプレート)

更新 : 2007 年 11 月

テンプレートの内容を指定します。

<TemplateContent>
    ...
</TemplateContent>

属性と要素

以降のセクションでは、属性、子要素、および親要素について説明します。

属性

なし

子要素

要素

説明

ProjectCollection

省略可能な要素

複数プロジェクトのテンプレートの構成と内容を指定します。

Project

省略可能な要素

プロジェクトに追加するファイルやディレクトリを指定します。

References

省略可能な要素

項目テンプレートに必要なアセンブリ参照を指定します。

ProjectItem

省略可能な要素

テンプレートに含まれているファイルを指定します。

CustomParameters

省略可能な要素

テンプレートからプロジェクトまたはアイテムを作成するときに使用する任意のカスタムのパラメータを指定します。

親要素

要素

説明

VSTemplate

必須の要素

プロジェクト テンプレート、項目テンプレート、またはスタート キットのメタデータすべてを含みます。

解説

TemplateContent は必須の要素です。

使用例

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>

参照

参照

Visual Studio テンプレート スキーマ参照

テンプレートのエクスポート ウィザード

その他の技術情報

Visual Studio テンプレート