【发布时间】:2016-05-12 23:59:47
【问题描述】:
我已向我的 PBI 工作项类型添加了一个名为“准备测试”的自定义状态。除了现有的“New”、“Approved”、“Committed”、“Done”列之外,我的用户还希望此状态出现在 TFS 篮板页面上。
我需要的是“New”、“Approved”、“Committed”、“Ready to test”、“Done”列。谁能提供我需要的代码来实现这个?
【问题讨论】:
我已向我的 PBI 工作项类型添加了一个名为“准备测试”的自定义状态。除了现有的“New”、“Approved”、“Committed”、“Done”列之外,我的用户还希望此状态出现在 TFS 篮板页面上。
我需要的是“New”、“Approved”、“Committed”、“Ready to test”、“Done”列。谁能提供我需要的代码来实现这个?
【问题讨论】:
我在这里回答了一个类似的问题: TFS 2013, mapping new states to the Stories board
因此,要将 Ready to Test 添加到看板,您的 processconfig 将如下所示:
<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="Ready to Test" type="InProgress" />
<State value="Done" type="Complete" />
</States>
请记住将新状态也添加到您的 Bug 工作项中,因为它也是 Scrum 模板中的默认要求。
【讨论】: