gpt4 book ai didi

TFS 2015 : Version-Error uploading custom process template

转载 作者:行者123 更新时间:2023-12-04 16:47:32 24 4
gpt4 key购买 nike

我已经创建了一个基于敏捷过程的自定义过程,并且已经完成了这篇文章中提到的所有规定步骤:TFS 2015 won't upload custom process template但是,当我将版本类型更改为不同的类型时,我在上传过程中收到此错误:

Time: 2016-04-21T08:37:48
Module: Template Importer
Exception Message: The remote server returned an error: (400) Bad Request. (type WebException)Status: ProtocolError
Response Status Code: BadRequest
Response Status Message: VS402452: The process template did not specify a version, or specified an invalid version

Exception Stack Trace: at System.Net.HttpWebRequest.GetResponse()
at Microsoft.TeamFoundation.Framework.Client.TeamFoundationProcessTemplateService.AddUpdateTemplate(String name, String description, String metadata, String state, String zipFileName)
at Microsoft.VisualStudio.TeamFoundation.PCW.TemplateManagementService.UpLoadTemplateFile(TemplateData data, FileInfo templateZipFile, ELeadLogger log)
at Microsoft.VisualStudio.TeamFoundation.PCW.TemplateManagementService.Import(String folderPath, ILogHandler logHandler)

是否有“可接受的”版本类型列表? TFS 2015 的 msdn 文档表明,通过上传自定义流程模板,它不会触及任何现有流程,但此错误似乎与该概念相矛盾。

有什么想法吗?一天都在咀嚼这个,一旦这个障碍被清除,其他一切都准备好了。谢谢!

最佳答案

随着 TFS 2013 更新 3 或 4 的发布,默认模板已被锁定。因此现在您需要将类型 GUID 更改为对于您的模板和名称是唯一的。

您将在流程模板文件夹根目录的 ProcessTemplate.xml 中找到流程模板版本:

<?xml version="1.0" encoding="utf-8"?>
<ProcessTemplate>
<metadata>
<name>Scrum 2015</name>
<description>This template is for teams who follow the Scrum framework.</description>
<version type="6B724908-EF14-45CF-84F8-768B5384DA46" major="3" minor="33" />
<plugins>
...
...
...

如果您的模板还没有这个标签,您需要添加它。

如果您创建自定义模板,您还必须 override the GUID and the name with your own values and that should get you onlocked .

<?xml version="1.0" encoding="utf-8"?>
<ProcessTemplate>
<metadata>
<!-- new name -->
<name>Custom Scrum 2015</name>
<description>This template is for teams who follow the Scrum framework.</description>
<!-- add/override version and set a new guid -->
<version type="276d0f20-c2f9-4077-8199-e81a8cc47012" major="1" minor="0" />
<plugins>
...
...
...

关于TFS 2015 : Version-Error uploading custom process template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36774605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com