Is there a shortcut for debugging a client-server application?

I am using Visual Studio 2010 to create a client server game (C #).
I often do this procedure: I launch the main server application (by pressing F5), and then debug the first and second clients (by right-clicking on the client project and choosing to start a new instance for each client). Is there a shortcut for this procedure?

+3
source share
1 answer

Right-click on the solution, select "Properties", select "Run Project" and set both projects to run.

+12
source

All Articles