I've got a WCF host application which gets started by an executable with some dynamic parameters.
Now I want to debug the this application but since it's getting started by the other tool VS.NET won't load it in debug mode.
Is it possible to write some DEBUG only code to force it execute this process in DEBUG mode so it'll hit the break points.
Currently it's using Process.Start()
to start the host application.
Attaching it to the debugger every time is not an option, I'm looking for a more practical solution.