Reputation: 4528
I have a project in Visual Studio (VS) which I need to launch twice with different args. These 2 instances communicate and I need the debugger attached to both.
Currently I:
.exe
from the build output to start second instanceDebug
-> Attach to Process
-> choose second instanceIs there a way to configure Visual Studio to launch 2 instances?
If not, is there any way I can shorten the time (using powershell or batch scripting etc.)?
Note: sometimes I debug with more than 2 instances. Compounding my problem
Upvotes: 0
Views: 137
Reputation: 339
If you want to debug multiple instances of the same project, you can run multiple instances of the Visual studio, and run each one in different Visual Studio. It's not very comfortable, but it can helps
Upvotes: 2