Asynchronous NAnt batch call -


in nant project, i'd fire off batch file , forget it. tried pulling this:

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

but nant complains:

'start' failed start     system cannot find specified fileblockquote 

start cmd /c c:\mybat.bat works if run straight command line. ideas?

take @ asyncexec task. also, iirc start not real program command, why you're getting error.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -