tfs2010 - 如何更改构建定义 - 构建优先级
我想更改构建定义的默认优先级(每次签入都会触发构建)。 我该怎么做?
I want to change the default priority of a build definition (the build is triggered each check-ins).
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MSBuild 优先级参数的正确使用是:
The correct use of the MSBuild priority argument is:
因此,您要更改的构建定义是 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