是否可以将参数发送到 Nant 任务中?

发布于 2024-09-11 14:23:03 字数 209 浏览 4 评论 0原文

我想要一个 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 技术交流群。

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

发布评论

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

评论(2

诗笺 2024-09-18 14:23:04

您使用的是哪个版本的 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.

等风也等你 2024-09-18 14:23:03

键入:

nant -help

表明您可以按如下方式定义属性:

-D:name=value

在脚本中测试它:

if="${property:exists('name')}"

在 CCNet 中,您可以使用以下命令运行它:

<tasks>
 <nant>
  <executable>nant.exe</executable>
  <buildFile>script.build</buildFile>
  <targetList>
   <target>build</target>
  </targetList>
  <buildArgs>-D:defaultPath=C:\build</buildArgs>
  <buildTimeoutSeconds>600</buildTimeoutSeconds>
 </nant>
</tasks>

Typing:

nant -help

shows that you can define properties as follows:

-D:name=value

to test it in a script:

if="${property:exists('name')}"

in CCNet, you can run it with:

<tasks>
 <nant>
  <executable>nant.exe</executable>
  <buildFile>script.build</buildFile>
  <targetList>
   <target>build</target>
  </targetList>
  <buildArgs>-D:defaultPath=C:\build</buildArgs>
  <buildTimeoutSeconds>600</buildTimeoutSeconds>
 </nant>
</tasks>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文