| title | Parameter Element | ||||
|---|---|---|---|---|---|
| description | Learn about the MSBuild Parameter element, which contains information about a specific parameter for a task generated by a UsingTask TaskFactory. | ||||
| ms.date | 03/13/2017 | ||||
| ms.topic | reference | ||||
| dev_langs |
|
||||
| helpviewer_keywords |
|
||||
| author | ghogen | ||||
| ms.author | ghogen | ||||
| ms.subservice | msbuild |
Contains information about a specific parameter for a task that is generated by a UsingTask TaskFactory. The name of the element is the name of the parameter. For more information, see UsingTask element (MSBuild).
<Project> <UsingTask> <ParameterGroup> <Parameter>
<ParameterGroup ParameterType="SystemType"
Output="true/false"
Required="true/false" />The following sections describe attributes, child elements, and parent elements.
| Attribute | Description |
|---|---|
ParameterType |
Optional attribute. The .NET type of the parameter, for example, System.String. |
Output |
Optional Boolean attribute. If true, this parameter is an output parameter for the task. By default, the value is false. |
Required |
Optional Boolean attribute. If true, this parameter is a required parameter for the task. By default, the value is false. |
None.
| Element | Description |
|---|---|
| ParameterGroup | Contains an optional list of parameters that will be present on the task that is generated by a UsingTask TaskFactory. |
The following example shows how to use the Parameter element.
<UsingTask TaskName="MyTask" AssemblyName="My.Assembly" TaskFactory="MyTaskFactory">
<ParameterGroup>
<Parameter1 ParameterType="System.String" Required="False" Output="False"/>
<Parameter2 ParameterType="System.Int" Required="True" Output="False"/>
...
</ParameterGroup>
<Task Evaluate="true">
... Task factory-specific data ...
</Task>
</UsingTask>