Re: [NAnt-users] nant hangs when executing devsrv.exe

2011-09-16 Thread Dominik Guder
Hi, nant's exec task waits until program terminates to check the returned exit code to fail when exit code <> 0. Please add span="true" to exec task then it will work. You can use "pidproperty" to get the process id when you want to save it for stopping the webserver at the end of your script. (I

[NAnt-users] nant hangs when executing devsrv.exe

2011-09-16 Thread Rasmus Rasmussen
Hello all, I have this task: it successfully starts the devserver (have to stop it first though). The problem is that nant does not terminate. Nant prints "BUILD SUCCEEDED Total time: 4.1 seconds." but does not return. What can be wrong? If I start de