Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Cruise Control .NET 中以一种一劳永逸的方式编写 Nant 或 Exec 任务(调用 nant.exe)。我不希望 CruiseControl 等待 Nant 脚本完成。
首先,这不是巡航控制的设计目的。理想情况下,它将捕获输出并将其存储在构建日志中。
但是,如果你想调用一个进程而不是等待它退出,你需要调用一个进程,然后启动你的 nant 实例并立即退出。
您可以通过使用精心设计的 cmd 调用来实现这一点,例如
cmd.exe /c "start '' /b nant.exe <target> -Dparam=value"
尽管我没有尝试过,但这应该可以工作。