The StringFormat Task provides functionality to take a format string and a list of values to produce a new string.
Example Usage:
<StringFormat Format="Old Version: {0} New Version: {1}"
Parameters="$(OldVersion);$(NewVersion)">
<Output PropertyName="ResultFormat" TaskParameter="Result" />
</StringFormat> | Attribute | Description | Required | Type | Direction |
| Format | The format string | True | String | Input |
| Parameters | The list of values to use | False | String[] | Input |
| Result | The formated string | N/A | String | Output |