异步 NAnt 批量调用

发布于 2024-09-24 22:41:43 字数 327 浏览 4 评论 0原文

在我的 NAnt 项目中,我想启动一个批处理文件,然后就忘记它。所以我尝试拉出这样的东西:

<exec program="start" commandline="cmd /c c:\mybat.bat" />

但是 NAnt 抱怨:

'start' failed to start
    The system cannot find the specified fileBlockquote

如果我直接从命令行运行它,start cmd /cc:\mybat.bat 就可以工作。有想法吗?

In my NAnt project, I'd like to fire off a batch file and just forget about it. So I tried pulling something like this:

<exec program="start" commandline="cmd /c c:\mybat.bat" />

But NAnt complains:

'start' failed to start
    The system cannot find the specified fileBlockquote

start cmd /c c:\mybat.bat works if I run it straight from the command line. Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

咽泪装欢 2024-10-01 22:41:43

看一下这个 AsyncExec 任务。另外,IIRC start 不是一个真正的程序,而是一个命令,这就是您收到该错误的原因。

Take a look at this AsyncExec task. Also, IIRC start is not a real program but a command, which is why you're getting that error.

反话 2024-10-01 22:41:43

使用它的更简单的替代方法:

<exec ... pidproperty="pid1" spawn="true" />
<exec ... pidproperty="pid2" spawn="true" />
<exec ... pidproperty="pid3" spawn="true" />
<waitforexit pid="${pid1}" />
<waitforexit pid="${pid2}" />
<waitforexit pid="${pid3}" />

请参阅 NAnt exec taskNAntContrib waitforexit 任务

A simpler alternative to use it the:

<exec ... pidproperty="pid1" spawn="true" />
<exec ... pidproperty="pid2" spawn="true" />
<exec ... pidproperty="pid3" spawn="true" />
<waitforexit pid="${pid1}" />
<waitforexit pid="${pid2}" />
<waitforexit pid="${pid3}" />

See NAnt exec task and NAntContrib waitforexit task

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