Visual Studio Scrum 1.0
我使用 Visual Studio Scrum 1.0 模板创建了一个新的团队项目。我正在尝试使用 TFS 集成工具/平台将我的工作项目从 MSF Agile Template 5.0 迁移到该模板。
我在 xml 中创建了工作项类型映射:
Bug > Bug
Issue > Impediment
User Story > Product Backlog Item
Task > Task
我遇到了很多冲突...但与此问题相关的冲突是:
Details: Work Item Type 'Issue' is not mapped in the configuration
Details: Work Item Type' User Story' is not mapped in the configuration
我使用 WorkItemTracking.xml 模板创建了配置。
我正在使用以下 xml,
<SettingXml>
<WITSessionCustomSetting>
<Settings />
<WorkItemTypes>
<WorkItemType LeftWorkItemTypeName="Bug" RightWorkItemTypeName="Bug" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="Task" RightWorkItemTypeName="Task" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="User Story" RightWorkItemTypeName="Product Backlog Item" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="Issue" RightWorkItemTypeName="Impediment" fieldMap="@@ALL@@" />
</WorkItemTypes>
<FieldMaps>
</FieldMaps>
<ValueMaps />
</WITSessionCustomSetting>
</SettingXml>
我添加了规则来忽略目标字段不存在冲突。
知道这是怎么回事吗?
I created a new team project with the Visual Studio Scrum 1.0 template. I'm trying to migrate my work items from the MSF Agile Template 5.0 to that one using the TFS Integration Tools/Platform.
I created the Work Item Type Mappings in the xml:
Bug > Bug
Issue > Impediment
User Story > Product Backlog Item
Task > Task
I get many conflicts...but the relevant ones to this question are:
Details: Work Item Type 'Issue' is not mapped in the configuration
Details: Work Item Type' User Story' is not mapped in the configuration
I created the configuration using the WorkItemTracking.xml template.
I'm using the following xml
<SettingXml>
<WITSessionCustomSetting>
<Settings />
<WorkItemTypes>
<WorkItemType LeftWorkItemTypeName="Bug" RightWorkItemTypeName="Bug" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="Task" RightWorkItemTypeName="Task" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="User Story" RightWorkItemTypeName="Product Backlog Item" fieldMap="@@ALL@@" />
<WorkItemType LeftWorkItemTypeName="Issue" RightWorkItemTypeName="Impediment" fieldMap="@@ALL@@" />
</WorkItemTypes>
<FieldMaps>
</FieldMaps>
<ValueMaps />
</WITSessionCustomSetting>
</SettingXml>
I've added rules to ignore the Target Field Does Not Exist conflicts.
Any idea what's going on here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来 TFS Integration Platform 中的隐式映射确实有问题。添加了显式字段映射并且它起作用了。
Looks like implicit mapping in TFS Integration Platform is really buggy. Added explicit field mappings and it worked.
你的“左”和“右”有可能调换了吗?
谢谢,
艾琳
Is it possible that your "left" and your "right" are switched?
Thanks,
Erin