将 tfs 变更集编号从 ccnet 传递到 msbuild 脚本
我需要在构建过程中将变更集编号从 ccnet 传递到 msbuild 脚本。
当 ccnet 触发新构建时,他会得到一个变更集编号,因此
我需要获取该变更集编号并将其传递给 msbuild 脚本。
此 msbuild 脚本涉及一些自定义工具,需要此变更集编号。
谢谢。
I need to pass changeset number from ccnet to msbuild script in build process.
When ccnet triggering new build,he get a changeset number, so
I need to take that changeset number and pass it to the msbuild script.
This msbuild script involves some custom tool, which need this changeset number.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为变更集编号创建一个属性,如下所示:
并将其通过命令行传递到您的 msbuild,如下所示:
在您的项目文件中,您将引用以下内容:
You can create a property for the changeset number like this:
and pass it through the commandline to your msbuild like this:
In your projectfile you would then reference this: