如何在TFS 2018中的冲刺级别更改任务板上的列名?

时间:2019-03-05 08:01:39

标签: tfs

与添加列类似的old thread from 2016,但当时没有此类功能。

我的问题是关于TFS2018。请参阅所附的屏幕截图。 enter image description here

2 个答案:

答案 0 :(得分:2)

该区域没有新内容。如果要获取新列,则必须自定义流程模板并将新状态添加到任务工作项类型:

对于Azure DevOps服务:

  1. Create an inherited process
  2. Modify the workflow of a work item type
  3. Apply the customized process to your project

对于TFS / Azure Devops Server(On-premises XML process model):

  1. Change the workflow for a work item type

对于TFS,您可以使用Process template editor

任务工作项类型(Azure DevOps服务)中的审阅状态:

enter image description here

Scrum板上的“审查”状态:

enter image description here

答案 1 :(得分:1)

对于TFS,要比对Azure Devops Services采取更多的步骤。

TFS 2018的步骤详细信息:

  1. 为VS 2017安装过程模板编辑器:

enter image description here

  1. 开始工作项目编辑:

enter image description here

  1. 选择您的TFS集合:

enter image description here

  1. 在现有团队项目中选择“任务”工作项:

enter image description here

  1. 打开工作项编辑表单的工作流程标签:

enter image description here

  1. 添加新的状态和转换:

enter image description here enter image description here

  1. 为每次新的转换更新原因:

enter image description here

  1. 保存工作结果。
  2. 在(VS2017安装目录)\ Common7 \ IDE文件夹中打开命令提示符。默认情况下:C:\ Program Files(x86)\ Microsoft Visual Studio 14.0 \ Common7 \ IDE
  3. 为您的团队项目下载过程配置文件:
  

witadmin.exe exportprocessconfig /集合:http://tfs-srv:8080/tfs/DefaultCollection / p:{TEAM_PROJECT_NAME} / f:{FILE_PATH} .xml

  1. 将新状态添加到任务积压定义中: enter image description here
  2. 上传新的流程配置文件:
  

witadmin.exe importprocessconfig /集合:http://tfs-srv:8080/tfs/DefaultCollection / p:{TEAM_PROJECT_NAME} / f:{FILE_PATH} .xml

结果:

enter image description here