Currently I have solution A that contains a domain layer base and solution B that references the binaries from solution A. Is there a way to debug straight through from one to the other with two instances of visual studio open (one for each solution). I've read that you can just add the existing projects from solution A to solution B. Is there any other solution that works? I've tried directly attaching solution A to what the running executable in solution B but it won't let me attach multiple debuggers to the same app.
I should note that when I step into a piece of it automatically brings up the code from solution A within solution B's instance of Visual studio to debug in. I suppose this is acceptable, but you can't just set arbitrary breakpoints and wait for the code to hit them this way.
Thanks