1

The default "Backlog" page on TFS 2012 looks like the screenshot below.
I'd like to add the "Effort" field to the "quick add" panel on the top (see arrow).

I know it involves changing xml templates, but I can't figure out the specifics.
How would I go about accomplishing that? :)

screenshot

4

1 回答 1

2

您需要更改项目的 AgileProcessConfig:

导出配置文件:

witadmin exportagileprocessconfig /collection:http://tfsserver:8080/tfs/DefaultCollection /p:ProjectName /f:d:\temp\test\agileprocessconfig.xml

通过添加 Effort 字段来编辑agileprocessconfig.xml:

<ProductBacklog>
 <AddPanel>
  <Fields>
    <Field refname="System.Title" />
    <Field refname="Microsoft.VSTS.Scheduling.Effort" />
  </Fields>
</AddPanel>

将文件导入回您的项目

witadmin importagileprocessconfig /collection:http://tfsserver:8080/tfs/DefaultCollection /p:ProjectName /f:d:\temp\test\agileprocessconfig.xml
于 2013-06-18T14:05:22.620 回答