is identical to the standard Ant task, except that it allows properties from the new project to be set in the original project.
The following table describes the task specific attributes for the task:
| Task Specific Attributes | ||
| Attribute | Description | Required |
| return | A comma separated list of property names. Whitespace is allowed, so either "a,b" or "a, b" are acceptable. | Yes |
<target name="return" description="return">
<property
name="team.enterprise.promotion.promotedWorkItemIds"
value="${epicId};${storyId1};${childId1.1};${childId1.2};${childId1.3};${childId1.4};${childId1.5};"/>
<xt:antfetch
antfile="${toolkitPath}/examples/ccmutilities/FindWorkItemIdForWorkItemType.xml"
return="foundId"/>
<echo>id: ${foundId}</echo>
</target>
|