4

In Visual Studio 2005, choosing to debug a specific web project only starts an ASP.NET Development Server for the project selected.

In Visual Studio 2010, debugging starts an ASP.NET Development Server for all 6 of the web projects in this solution, regardless of which one I chose to debug.

Is there a way to change this behavior to only open the Development Server for the web site project that I intend to debug? It's a drain on resources, and annoying to have to close each of them every time I start this.

Brisbe42
  • 303

2 Answers2

4

Finally found the answer to my question. Apparently each csproj.user file has a setting:

 <AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>

Changing this from the default of true to false, allows you to make it so it won't do this setting.

Brisbe42
  • 303
1

You should be able to see each project in the solution in the "Solution Explorer." Find the project that you want to debug, right-click on it, and select "debug" from the menu that pops-up. Give it a shot once (that works for me).

Aaron
  • 770