tfs2010 - 如何更改构建定义 - 构建优先级

发布于 2024-11-24 16:30:16 字数 41 浏览 4 评论 0原文

我想更改构建定义的默认优先级(每次签入都会触发构建)。 我该怎么做?

I want to change the default priority of a build definition (the build is triggered each check-ins).
How do I do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

上课铃就是安魂曲 2024-12-01 16:30:16

MSBuild 优先级参数的正确使用是:

/p:Priority=High

The correct use of the MSBuild priority argument is:

/p:Priority=High
岁月打碎记忆 2024-12-01 16:30:16

因此,您要更改的构建定义是 CI 构建。右键单击构建定义,然后单击编辑。转到“进程”选项卡(希望您使用的是 TFS 2010 附带的默认模板,请参阅 MSDN 上的此演练,了解如何编辑构建定义 http://msdn.microsoft.com/en-us/library/dd647547.aspx)并查找MSBUILD 参数。添加开关/priority优先级

优先级:用于构建定义的队列优先级。您可以将此参数与 /priority 选项一起使用。
有效值为低、低于正常、正常、高于正常和高。

请参阅其他 msbuild 开关,http://msdn.microsoft.com/en-us/库/ms181742.aspx

HTH
干杯,塔伦

So the build definition you want to change is a CI build. Right click the build definition and click edit. Go to the process tab (hopefully you are using the default template the comes with TFS 2010, see this walkthrough on MSDN on how to edit a build definition http://msdn.microsoft.com/en-us/library/dd647547.aspx) and look for the MSBUILD arguments. Add the switch /priority:priority

priority: Queue priority to use for the build definition. You use this argument with the /priority option.
Valid values are Low, BelowNormal, Normal, AboveNormal, and High.

See other msbuild switches, http://msdn.microsoft.com/en-us/library/ms181742.aspx

HTH
Cheers, Tarun

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文