7

Is there any way of telling Visual Studio (2012) to launch multiple projects at start up?

I am currently working on a solution containing both the client and server sides of a program.

Starting under debug launches the client but to launch the server I need to follow Server Project > Properties > Debug > Start new instance

VS2012, Debug , start new instance

I'm fundamentally lazy, and this process is getting boring!

Morphed
  • 3,527
  • 2
  • 29
  • 55
  • 2
    http://msdn.microsoft.com/en-us/library/vstudio/ms165413(v=vs.110).aspx – Max Nov 12 '13 at 08:38
  • 1
    possible duplicate of [Running two projects at once in Visual Studio](http://stackoverflow.com/questions/3850019/running-two-projects-at-once-in-visual-studio) – stijn Jan 15 '14 at 14:49

2 Answers2

16

You can go to your main Solution => right click => Properties => Tab: Common properties => Startup project => Multiple startup projects

There you can select all the projects you want to launch.

Xuntar
  • 2,260
  • 3
  • 21
  • 31
9

if you right click on the solution, you can select an option called Set StartUp Projects

enter image description here

This gives you a dialog where you can select which projects you want to start

enter image description here

David Pilkington
  • 13,528
  • 3
  • 41
  • 73