如何获取 Cruise Control .net ccnet.config 文件中的内部版本号?
我可以从 CCNetLabel 获取构建信息,其格式为:major.minor.build.revision,我只想获取构建号,是否有任何变量可以访问以获取构建号值?
我可以通过编写一个工具来做到这一点,但我有兴趣知道是否可以获取 Cruise Control .net 中的任何属性来获取此值。
提前致谢。
塔拉·辛格
I can get the Build info from CCNetLabel, which is in format: major.minor.build.revision , I am interested in getting the build number only, is there any variable which I can access to get the build number value?
I can do it by writing a tool, but I am interested in knowing if it is possible to get hold of any property in Cruise Control .net to get this value.
Thanks in Advance.
Tara Singh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所有 CruiseControl.Net 集成属性的列表。没有内部版本号变量,您必须自己解析它。例如,在 NAnt 中,您可以使用 version::get- build() 来分割它,在 MSBuild 4.0 中这应该可以工作:
A list of all CruiseControl.Net integration properties. There is no build number variable, you have to parse it yourself. For example, in NAnt you can use version::get-build() to split it, and in MSBuild 4.0 this should work: