Work item tags were introduced in TFS 2012 Update 2 as a new feature for Team Web Access.

Is there a way, even a work around, so that the tags can be displayed/edited in the TFS Client?

Even if it was just a semicolon separated textbox would be sufficient.

有帮助吗?

解决方案

This is currently only available through Web Access. The Team Foundation Server / Visual Studio Team is looking into adding this to other clients as well. The following Visual Studio User Voice items with Product Team Comments hint towards it being released in the future:

其他提示

Here is a rudimentary workaround. Add the following to your work item template.

<FORM>
  <Layout HideReadOnlyEmptyFields="true" HideControlBorders="true">
    <Group Margin="(4,0,0,0)">
      <Column PercentWidth="100">
...    
      <Control FieldName="System.Tags" Type="FieldControl" Label="Tags" LabelPosition="Left" />
...
      </Column>
    </Group>
  </Layout>
</FORM>

This will add a read-only field in the client and on the web as well (unfortunately).

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top