如何获取 Cruise Control .net ccnet.config 文件中的内部版本号?

发布于 2024-11-09 21:01:44 字数 191 浏览 4 评论 0原文

我可以从 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 技术交流群。

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

发布评论

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

评论(1

情域 2024-11-16 21:01:44

所有 CruiseControl.Net 集成属性的列表。没有内部版本号变量,您必须自己解析它。例如,在 NAnt 中,您可以使用 version::get- build() 来分割它,在 MSBuild 4.0 中这应该可以工作:

$(CCNetLabel.Split('.')[2])

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:

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