我使用的是TFS 2015.4敏捷模板。我想改变我的工作流状态,以包括分析作为一个选项。我已经修改了用户Story和ProcessConfiguration,工作流节点和有效状态等。我成功地重新上传了模板,并将新模板设置为默认值。在设置用户故事状态方面一切都很好。但是,在看板上,我想添加一个选项卡,它映射到新添加的Analysis。这个新的选项不会出现。还有什么东西我遗漏了吗?
发布于 2017-12-12 03:49:52
你需要修改流程配置以映射新的工作流状态以转移。尝试以下步骤:
witadmin exportprocessconfig /collection:http://tfsserver:8080/tfs/teamprojectcollection /p:teamproject /f:C:\Users\username\Desktop\ProcessConfiguration.xml
<RequirementBacklog category="Microsoft.RequirementCategory" parent="Microsoft.FeatureCategory" pluralName="Stories" singularName="User Story" 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.StoryPoints" /> <Column width="100" refname="Microsoft.VSTS.Common.ValueArea" /> <Column width="200" refname="System.IterationPath" /> <Column width="200" refname="System.Tags" /> </Columns> <States> <State type="Proposed" value="New" /> <State type="InProgress" value="Active" /> <State type="InProgress" value="Resolved" /> <State type="InProgress" value="Analysis" /> <State type="Complete" value="Closed" /> </States> </RequirementBacklog>
witadmin importprocessconfig /collection:http://tfsserver:8080/tfs/teamprojectcollection /p:teamproject /f:C:\Users\username\Desktop\ProcessConfiguration.xml

https://stackoverflow.com/questions/47761879
复制相似问题