Question

I would like to start an application from a pre-build step. However, I do not want Visual Studio to wait for the application to close.

Basically, I have a simulation engine that I need to start prior to a debugging session.

Is this possible? I tried commands like "start app.exe" and "cmd start app.exe"...

Was it helpful?

Solution 2

This is how I ended up doing this.

It was kind of a "duh" moment, but I created a simple console application that starts a process and returns.

Thanks to Eugene for the suggestion.

OTHER TIPS

Is "start /b" what you're looking for? It starts the command and returns immediately.

C:\>start /b ping stackoverflow.com

C:\>
Pinging stackoverflow.com [69.59.196.211] with 32 bytes of data:
Reply from 69.59.196.211: bytes=32 time=153ms TTL=44

C:\>Reply from 69.59.196.211: bytes=32 time=153ms TTL=44

C:\>Reply from 69.59.196.211: bytes=32 time=153ms TTL=44

C:\>
C:\>Reply from 69.59.196.211: bytes=32 time=154ms TTL=44

Ping statistics for 69.59.196.211:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 153ms, Maximum = 154ms, Average = 153ms

C:\>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top