更改任务积压和迭代板上的任务分组 [英] Change tasks grouping on task backlog and iteration board

查看:84
本文介绍了更改任务积压和迭代板上的任务分组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在任务积压和CMMI流程模板的迭代板上将任务分组从每个要求更改为每个要素。我试图按照这个页面的步骤进行操作https://www.visualstudio.com/en-us/docs/work/reference/process-configuration-xml-element,
更改行< TaskBacklog category = " Microsoft.TaskCategory"父= QUOT; Microsoft.RequirementCategory" pluralName = QUOT;任务和QUOT; singularName = QUOT;任务"> to< TaskBacklog category =" Microsoft.TaskCategory"父= QUOT; Microsoft.FeatureCategory"
pluralName ="任务" singularName ="任务">,但任务积压和迭代板仍按要求分组任务,而不是按配置分组。

I want to change tasks grouping on task backlog and iteration board of the CMMI process template from per requirement to per feature. I tried to follow somehow the steps from this page https://www.visualstudio.com/en-us/docs/work/reference/process-configuration-xml-element, changing the line <TaskBacklog category="Microsoft.TaskCategory" parent="Microsoft.RequirementCategory" pluralName="Tasks" singularName="Task"> to <TaskBacklog category="Microsoft.TaskCategory" parent="Microsoft.FeatureCategory" pluralName="Tasks" singularName="Task">, but both task backlog and iteration board still group tasks by requirement and not by feature, as configured.

推荐答案

嗨!

你必须做下一步:

1。添加到功能工作项类型 字段"Microsoft.VSTS.Scheduling.Size"。您可以在需求工作项类型中找到它。

1. Add to Feature work item type the field "Microsoft.VSTS.Scheduling.Size". You can find it in Requirement work item type.

2。更改过程  file next 部分:

2. Change in process file next sections:

<PortfolioBacklogs>
    <PortfolioBacklog category="Microsoft.EpicCategory" pluralName="Epics" singularName="Epic" workItemCountLimit="1000">
      <AddPanel>
        <Fields>
          <Field refname="System.Title" />
        </Fields>
      </AddPanel>
      <Columns>
        <Column width="100" refname="System.WorkItemType" />
        <Column width="400" refname="System.Title" />
        <Column width="100" refname="System.State" />
        <Column width="50" refname="Microsoft.VSTS.Scheduling.Effort" />
        <Column width="50" refname="Microsoft.VSTS.Common.BusinessValue" />
        <Column width="100" refname="Microsoft.VSTS.Common.ValueArea" />
        <Column width="200" refname="System.Tags" />
      </Columns>
      <States>
##### YOUR STATES
      </States>
    </PortfolioBacklog>
  </PortfolioBacklogs>
  <RequirementBacklog category="Microsoft.FeatureCategory" parent="Microsoft.EpicCategory" pluralName="Features" singularName="Feature" workItemCountLimit="1000">
    <AddPanel>
      <Fields>
        <Field refname="System.Title" />        
      </Fields>
    </AddPanel>
    <Columns>
      <Column width="100" refname="System.WorkItemType" />
      <Column width="400" refname="System.Title" />
      <Column width="100" refname="System.State" />
      <Column width="50" refname="Microsoft.VSTS.Scheduling.Size" />
      <Column width="100" refname="Microsoft.VSTS.Common.ValueArea" />
      <Column width="200" refname="System.IterationPath" />
      <Column width="200" refname="System.Tags" />
    </Columns>
    <States>
##### YOUR STATES
    </States>
  </RequirementBacklog>
  <TaskBacklog category="Microsoft.TaskCategory" parent="Microsoft.FeatureCategory" pluralName="Tasks" singularName="Task" workItemCountLimit="1000">
    <AddPanel>
      <Fields>
        <Field refname="System.Title" />
      </Fields>
    </AddPanel>
    <Columns>
      <Column width="400" refname="System.Title" />
      <Column width="100" refname="System.State" />
      <Column width="100" refname="System.AssignedTo" />
      <Column width="50" refname="Microsoft.VSTS.Scheduling.RemainingWork" />
    </Columns>
    <States>
##### YOUR STATES
    </States>
  </TaskBacklog>


这篇关于更改任务积压和迭代板上的任务分组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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