I have a solution with a few different projects in it: a couple dll projects, a console project, and a couple WCF projects.
The console project uses a dll from one of the projects, but I have VS set so that the console project has no dependencies. However, when I debug the console project VS launches, or builds all my projects. This is just a pain since both the WCF projects compile and launch the WCF client or the asp.net dev IIS process. Is there a way to prevent this behavior?
EDIT: I have semi fixed it. To prevent the WCF library from launching, I followed this: http://stackoverflow.com/questions/283145/how-to-prevent-visual-studio-launch-wcfsvchost-exe-in-debuggin
But I still cant stop the asp.net dev server from launching.