Display new work item tags from TFS 2012 Update 2

2019-08-02 03:46发布

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.

2条回答
唯我独甜
2楼-- · 2019-08-02 03:49

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:

查看更多
▲ chillily
3楼-- · 2019-08-02 04:12

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).

查看更多
登录 后发表回答