是否可以将参数发送到 Nant 任务中?
我想要一个 nant 任务,根据构建类型将代码构建到 dev/test 文件夹中。我不想使用不同的文件夹来重复任务/目标,而是想使用不同的参数 dev/test 从 CruiseControl.NET 调用 Nant 任务。
然后,nant 任务将根据输入参数定义输出文件夹的属性。我想我需要某种“if”语句来测试参数并定义正确的参数。
有什么想法如何做到这一点? 谢谢。
I would like to have a nant task which builds code into either a dev/test folder depending on the type of build. Rather than have repeated tasks/targets with just different folders I would like to call Nant task from CruiseControl.NET with a different parameter dev / test.
The nant task would then define a property for the output folder depending on the input parameter. I think I needs some kind of 'if' statement to test the parameter and define the correct one.
Any ideas how to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的是哪个版本的 CCNet?
1.5 版本能够将参数向下传递给 NAnt,并且似乎工作得很好。
What version of CCNet are you using?
Version 1.5 has the ability to pass parameters down to NAnt and seems to work quite well.
键入:
表明您可以按如下方式定义属性:
在脚本中测试它:
在 CCNet 中,您可以使用以下命令运行它:
Typing:
shows that you can define properties as follows:
to test it in a script:
in CCNet, you can run it with: