ProjectType Element (Visual Studio Templates)

Categorizes the project template so that it appears under the specified group in the New Project or Add New Item dialog box.

警告

Project templates are supported for C++ starting in Visual Studio 2012. They are not supported for C++ in Visual Studio 2010 and earlier versions.

<VSTemplate>
   <TemplateData>
     <ProjectType>

<ProjectType> CSharp/VisualBasic/VC/Web </ProjectType>

特性和元素

The following sections describe attribute, child elements, and parent elements.

特性

None.

子元素

None.

父元素

Element

Description

TemplateData

Categorizes the template and defines how it displays in either the New Project or the Add New Item dialog box.

文本值

A text value is required.

This value specifies the type of project the template will create, and must contain one of the following values:

  • CSharp: Specifies that the template creates a Visual C# project or item.

  • VisualBasic: Specifies that the template creates a Visual Basic project or item.

  • Web: Specifies that the template creates a Web project or item. If the ProjectType element contains this value, the language of the project or item is defined in the ProjectSubType 元素(Visual Studio 模板).

备注

ProjectType is a required child element of TemplateData.

The value of the ProjectType element specifies where the template is located in the New Project or Add New Item dialog box. For example, a template with a ProjectType value of CSharp appears under the Visual C# node in the New Project dialog box.

A template subtype can be specified by using the ProjectSubType element.

示例

The following example shows the metadata for a project template for a Visual C# application.

<VSTemplate Type="Project" Version="3.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 模板架构参考

ProjectSubType 元素(Visual Studio 模板)

概念

在 Visual Studio 中创建项目和项的模板