Como: Passar parâmetros personalizados para modelos

You can use the CustomParameter element in your .vstemplate file to add new parameters to a template. For a complete list of template parameters, see Parâmetros de modelo.

To add a custom parameter

  1. Locate the TemplateContent element in the .vstemplate file for the template.

  2. Add a CustomParameters element and one or more CustomParameter child elements as children of the TemplateContent element. For example:

    <TemplateContent>
        ...
        <CustomParameters>
            <CustomParameter Name="$MyParameter1$" Value="MyValue2"/>
            <CustomParameter Name="$MyParameter2$" Value="MyValue2"/>
        </CustomParameters>
    </TemplateContent>
    
  3. Use the parameter in one or more of the code files in the template. For example:

    string Value1 = "$MyParameter1"
    string Value2 = "$MyParameter2"
    

    When a project is created from the template, the values set by the Value attributes of the CustomParameter elements corresponding to the parameters will replace the parameters in the code files.

Consulte também

Tarefas

Como: Substituir parâmetros em um modelo.

Referência

Elemento CustomParameter (modelos de Visual Studio)

Referência de esquema de modelo do Studio Visual

Conceitos

Parâmetros de modelo

Outros recursos

Modelos Visual Studio

Starter Kits