I have a strange problem with setting up TFS 2010 work items. It seems that it is not possible to change the case of characters in a set of valid field values, for example. change "Works for me" to "Works for me." Every other line, for example. "Works for me 123."
Even if I first try to change the name to a different line (since I know a similar problem with files in Visual Studio projects), it simply does not accept the upper case version and always returns to the lower case line.
Background Information:
We have a custom WIT file to identify the Error work item. This includes determining the allowed values for the Solved Mind field. Initially, our list contained lowercase words, for example. "Works for me." Because we want to synchronize TFS work items with the HP Quality Center, we need an exact match for state names.
Version Required:
<FIELD name="Resolved Reason" refname="Microsoft.VSTS.Common.ResolvedReason" type="String" reportable="dimension">
<HELPTEXT>The reason why the bug was resolved</HELPTEXT>
<ALLOWEDVALUES expanditems="true">
<LISTITEM value="Duplicate" />
<LISTITEM value="Fixed" />
<LISTITEM value="Wont Fix" />
<LISTITEM value="Invalid" />
<LISTITEM value="Works For Me" />
<LISTITEM value="Forwarded" />
</ALLOWEDVALUES>
</FIELD>
Actual version:
<FieldDefinition reportable="dimension" refname="Microsoft.VSTS.Common.ResolvedReason" name="Resolved Reason" type="String">
<ALLOWEDVALUES>
<LISTITEM value="Duplicate" />
<LISTITEM value="Fixed" />
<LISTITEM value="Wont fix" />
<LISTITEM value="Invalid" />
<LISTITEM value="Works for me" />
<LISTITEM value="Forwarded" />
</ALLOWEDVALUES>
<HELPTEXT>The reason why the bug was resolved</HELPTEXT>
</FieldDefinition>
Any ideas are welcome. Thanks Robert
source
share