TFS 2013,将新状态映射到故事板 [英] TFS 2013, mapping new states to the Stories board

查看:25
本文介绍了TFS 2013,将新状态映射到故事板的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

用户故事可能无法实现,但我正在尝试显示我在故事板中创建的新状态.

It might not be possible for user stories, but I'm trying to show the new state that I created in the stories board.

我们正在使用 Stories backlog 板,并且在 tfs 下(甚至通过点击项目通过板)我们可以将项目设置为新状态.

We are using the Stories backlog board and under tfs (even through the board by clicking on the items) we can set the items to the new state.

通过使用 witadmin 导出 wit 文件,我发现的所有信息都与任务或错误有关,但我看不到任何对用户故事执行相同操作的方法.

All the info that I've found is about tasks or bugs by exporting the wit file using witadmin but I can't see any way to do the same with user stories.

任何帮助将不胜感激.

问候.

推荐答案

您需要使用 witadmin.exe 导出团队项目的流程配置文件

You'll need to export the process configuration file for your Team Project using witadmin.exe

导入导出流程配置 [witadmin]

witadmin exportprocessconfig /collection:http://TFS2013:8080/tfs/defaultcollection /p:MyProject /f:C:\Temp\processconfiguration.xml

在需求类别中添加新状态,例如进行中"状态

Add in your new state in the requirements category, for example, an "In Progress" state

<RequirementBacklog category="Microsoft.RequirementCategory" pluralName="Backlog items" singularName="Backlog item">
    <States>
      <State value="New" type="Proposed" />
      <State value="Approved" type="Proposed" />
      <State value="Committed" type="InProgress" />
      <State value="In Progress" type="InProgress" />
      <State value="Done" type="Complete" />
    </States>

然后再次导入

witadmin importprocessconfig /collection:http://TFS2013:8080/tfs/defaultcollection /p:MyProject /f:C:\Temp\processconfiguration.xml

最后,进入您的看板设置并为新状态添加一列.

Finally, go into your kanban board settings and add a column for the new state.

更多详细信息此处

这篇关于TFS 2013,将新状态映射到故事板的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆