How to debug only one project in Visual Studio

3

I have six C # WEB projects inside a SOLUTION in Visual Studio 2010, when I run the debug, visual studio launches the six projects at a time, each one in a different process.

Does it have to debug just one project or do I have to put each project into a SOLUTION?

When I run a project

All these services run!

    
asked by anonymous 22.12.2014 / 13:48

4 answers

1

You can make a Unload of the project

As follows:

  • Right-click the project you want to disable in Solution Explorer
  • Click Unload Project
  • And that's it.
  • If you want to revert:

  • Right click on the project you want to re-enable in Solution Explorer
  • Click Reload Project
  • And that's it.
  • 22.12.2014 / 18:20
    2
  • Right-click your solution (through Solution Explorer);
  • choose Set Startup Projects ;
  • select the project you want to run in the Single Startup Project section;
  • Give Apply to finish.
  • Retired of that answer .

        
    22.12.2014 / 14:08
    0

    Right-click your solution and go to Configuration Manager .

    In the Configuration Manager, change all of your applications you do not want to run by checking Build and leave the application you want to debug checked.

    After that a clean throughout the solution and soon after a rebuild.

        
    22.12.2014 / 17:56
    0
  • Right click on the project.
  • Select Debug .
  • Click% with%.
  • 22.12.2014 / 17:39