Team Build 的内部版本号和 $(Rev:.r)
TFS Build 2010 使用内部版本号。它类似于 $(Rev:.r)
。 $(Rev:.r)
每天都在增加,而内部版本号则以其他方式增加。
问题是:
内部版本号
的正式名称是什么?- 如何以宏格式访问
内部版本号
,以便在版本定义中以“版本号格式”使用它? - 仅当构建失败时才会显示内部编号,并且只能通过团队构建流程模板中的
BuildDetail
变量进行访问。它未显示且无法在 Build Explorer 中搜索。如何在 Build Explorer 中显示并可搜索它? - 这个
内部版本号
如何增加?所有定义中的每个构建?在整个项目集合中?
TFS Build 2010 uses an internal build number. It's similar to $(Rev:.r)
. $(Rev:.r)
increases in each day while internal build number are increased in other way.
The questions are:
- What is the official name of the
internal build number
? - How to access
internal build number
in macro format in order to use it in "Build Number Format" within the build definition? - The internal number is only shown when a build fails and is only accessible via
BuildDetail
variable in team build process templates. It is not shown and could not be searched in Build Explorer. How can I get it shown and search-able in Build Explorer? - How this
internal build number
increases? With each build among all definitions? In a total project collection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 MSDN 的 “使用内部版本号” 中的
$(BuildID)
。Try
$(BuildID)
from MSDN's "Work with Build Numbers".