添加功能已禁用tfs2017

时间:2018-03-29 13:24:25

标签: tfs tfs2017 tfs-process-template

我刚刚在我的backlog上启用了功能组合,并且禁用了添加按钮。添加功能的唯一方法是使用我发现的扩展,但对我来说这不是一个好的解决方案。如何在我的待办事项上启用添加功能?

我目前在内部使用tfs2017.1

1 个答案:

答案 0 :(得分:0)

确保在addpanel

中添加processconfiguration.xml

这是Aile模板的默认设置

<PortfolioBacklog category="Microsoft.FeatureCategory" pluralName="Features" singularName="Feature" parent="Microsoft.EpicCategory" workItemCountLimit="1000">
  <States>
    <State value="New" type="Proposed" />
    <State value="Active" type="InProgress" />
    <State value="Resolved" type="InProgress" />
    <State value="Closed" type="Complete" />
  </States>
  <Columns>
    <Column refname="System.WorkItemType" width="100" />
    <Column refname="System.Title" width="400" />
    <Column refname="System.State" width="100" />
    <Column refname="Microsoft.VSTS.Scheduling.Effort" width="50" />
    <Column refname="Microsoft.VSTS.Common.BusinessValue" width="50" />
    <Column refname="Microsoft.VSTS.Common.ValueArea" width="100" />
    <Column refname="System.Tags" width="200" />
  </Columns>
  <AddPanel>
    <Fields>
      <!-- Make sure all required fields in state new are listed here -->
      <Field refname="System.Title" />
    </Fields>
  </AddPanel>
</PortfolioBacklog>