Niels Filter
Niels Filter

Reputation: 4528

Debug mulitple instance of project in Visual Studio

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:

Is 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

Answers (1)

Anton
Anton

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

Related Questions