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

Re: [NAnt-users] Getting errors after upgrading to NAnt .90 - Any ideas?

2011-09-16 Thread Dominik Guder
Hi James, calling "LoadTasks" is by design. For short: Nant.exe crawls all *Tasks.dll files in its folder and search for Tasks. One question: Did you unblock the downloaded zip file? From nant's issue tracker: "I had this exact same problem. It comes from the assembly not being trusted. Windows

[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