Any good way to run 2 exes from VS 2008 IDE for debugging?

I have exe, which is the "server" and exe, which is its client.

I would like for me to press the RUN button (F5):

  • the server starts
  • the client starts with an attached debugger

Are there any good ways to do this?

+3
source share
2 answers

If you have several projects in one solution, and you want to run more than one, then

  • Solution → Properties → Common Properties- > StartupProject- > Select Multiple Start Up Projects → Set the Sequence. ( WCF , , IDE )

  • Project → Debug- > Select Start External Project- > Enter the Path.
  • " " " ".
+2

, debug- > run new instance

0

Source: https://habr.com/ru/post/1777528/


All Articles