如何为敏捷看板排序迭代列?
How to order iteration columns for agile kanban board?
我正在设置一个过程模板并希望在迭代中对列进行排序。我在哪里可以更改此订单?
我已经设置了我的 STATES 和 TRANSITIONS,但是当在 Web 上显示时,我的顺序发生了变化。
How to order iteration columns for agile kanban board?
根据文档 On-premises XML process customization, we could Set default columns。
因此,要为敏捷看板排序迭代列,您可以尝试以下步骤:
导出敏捷过程模板:
解压Agile.zip
,打开文件夹WorkItem Tracking\Process
下的文件ProcessConfiguration.xml
。然后我们更改列的顺序,例如将 Title
State
更改为 State
Title
:
用户故事下默认列的XML应该是:
<RequirementBacklog category="Microsoft.RequirementCategory" pluralName="Stories" singularName="User Story" workItemCountLimit="1000">
<States>
...
</States>
<Columns>
<Column refname="System.WorkItemType" width="100" />
<Column refname="System.Title" width="400" />
<Column refname="System.State" width="100" />
...
</Columns>
然后我把Title
和State
的顺序改了:
<RequirementBacklog category="Microsoft.RequirementCategory" pluralName="Stories" singularName="User Story" workItemCountLimit="1000">
<States>
...
</States>
<Columns>
<Column refname="System.WorkItemType" width="100" />
<Column refname="System.State" width="100" />
<Column refname="System.Title" width="400" />
...
</Columns>
在文件夹根目录下的ProcessTemplate.xml
文件中更改名称和版本类型(随意修改几位):
<?xml version="1.0" encoding="utf-8"?>
<ProcessTemplate>
<metadata>
<name>AgileTestByLeo</name>
<description>This template is flexible and will work great for most teams using Agile planning methods, including those practicing Scrum.</description>
<version type="ADCC42AB-9882-485E-A3ED-7678F01F56BD" major="16" minor="1" />
<plugins>
...
</plugins>
</metadata>
压缩该文件夹并将此 .zip
文件导入流程,使用此自定义流程创建一个新项目:
现在,列的顺序已正确修改。
注意:TRANSITION
元素用于定义从一种状态到另一种状态的每个有效进展和回归的转换。
希望这对您有所帮助。
我正在设置一个过程模板并希望在迭代中对列进行排序。我在哪里可以更改此订单?
我已经设置了我的 STATES 和 TRANSITIONS,但是当在 Web 上显示时,我的顺序发生了变化。
How to order iteration columns for agile kanban board?
根据文档 On-premises XML process customization, we could Set default columns。
因此,要为敏捷看板排序迭代列,您可以尝试以下步骤:
导出敏捷过程模板:
解压
Agile.zip
,打开文件夹WorkItem Tracking\Process
下的文件ProcessConfiguration.xml
。然后我们更改列的顺序,例如将Title
State
更改为State
Title
:用户故事下默认列的XML应该是:
<RequirementBacklog category="Microsoft.RequirementCategory" pluralName="Stories" singularName="User Story" workItemCountLimit="1000"> <States> ... </States> <Columns> <Column refname="System.WorkItemType" width="100" /> <Column refname="System.Title" width="400" /> <Column refname="System.State" width="100" /> ... </Columns>
然后我把
Title
和State
的顺序改了:<RequirementBacklog category="Microsoft.RequirementCategory" pluralName="Stories" singularName="User Story" workItemCountLimit="1000"> <States> ... </States> <Columns> <Column refname="System.WorkItemType" width="100" /> <Column refname="System.State" width="100" /> <Column refname="System.Title" width="400" /> ... </Columns>
在文件夹根目录下的
ProcessTemplate.xml
文件中更改名称和版本类型(随意修改几位):<?xml version="1.0" encoding="utf-8"?> <ProcessTemplate> <metadata> <name>AgileTestByLeo</name> <description>This template is flexible and will work great for most teams using Agile planning methods, including those practicing Scrum.</description> <version type="ADCC42AB-9882-485E-A3ED-7678F01F56BD" major="16" minor="1" /> <plugins> ... </plugins> </metadata>
压缩该文件夹并将此
.zip
文件导入流程,使用此自定义流程创建一个新项目:
现在,列的顺序已正确修改。
注意:TRANSITION
元素用于定义从一种状态到另一种状态的每个有效进展和回归的转换。
希望这对您有所帮助。