Possible Duplicate:
MSBuild exec task without blocking
In MSBuild I need to launch a process (vsperfcmd) but not wait around for it to finish since it blocks indefinitely until a shutdown command is called from elsewhere. I'm currently launching it with the exec
task:
<exec command="vsperfcmd /start:coverage /output:test.coverage" />
I've tried using "start" but I get the same blocking issue
<exec command="start vsperfcmd /start:coverage /output:test.coverage" />
Strangely the same command does not block if entered at the command line.