Run more than one project in Visual Studio

3

In a same solution of Visual Studio I created two projects, the first to execute a Socket Server and the second as a Client Socket that will send a file, however I am having difficulties to execute the two projects at the same time, some solution?

    
asked by anonymous 17.01.2017 / 17:39

2 answers

5

In the properties of the solution (right-click), you can configure it as Multiple startup projects and choose the Action combo box the desired option.

See the image below:

    
17.01.2017 / 17:50
1

A manual way would be to run a project, then go to Solution Explorer and right click on the other project, choose Debug > Start new instance

    
17.01.2017 / 17:49