How can I run multiple copies of the same app in Debug with Visual Studio? For instance, how do I run app.exe /option1
and app.exe /option2
and still debug both? I know I can run them manually and then attach, but I want an automated solution.
I have tried writing a small console app just to run 2 processes, but obviously they are not being run under debugger. Any ideas?