Monday, October 30, 2017

Run multiple projects in Visual Studio


During application development, we might need to run multiple projects within the solution in visual studio. We can set one project as default. We can also run other projects in parallel within visual studio using the following steps.

Let's suppose 'Project1' is your default startup project and you want to start another project 'Project2' in the same solution.
  1. Run you default project ( i.e Project1 ).
  2. Then 'right-click' your second project ( i.e Project2 ),  go to 'Debug' and click 'Start new instance'.
  3. You should have both of your projects running.

No comments:

Post a Comment