Work Item question
thanks,
aaron
thanks,
aaron
The "Authoring Work Item Types.doc" document in the extensibility tool kit has the most information about how to author workitemtype definitions. Are you looking for more of a walkthrough/screenshots?
If you have a specific question about field elements, can you please post the question?
Thanks.
-Mareen.
You should add something like that to your transition:
<TRANSITION from="State 1" to="State 2">
....
<FIELDS>
<FIELD refname="System.AssignedTo">
<COPY from="currentuser"/>
</FIELD>
</FIELDS>
</TRANSITION>
(DEFAULT rule will set field's value only if it was empty; COPY will work in all cases).
<
...
User names are stored internally in the form of domain\user, so try the following:
<DEFAULT from="value" value="domain\aaron" />,
replacing "domain" with the actual domain name. Please note that the user must be known to the sustem - i.e. registered on the team foundation server.