Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Don't start ASP.NET Development Server when running non-web projects

I have a solution with a few projects in it, one of which is a web site. When I run one of the non-web projects (e.g. a console app), the ASP.NET Development Server starts up anyway.

I'm sure there was an option for this somewhere - how do I make the ASP.NET Development Server start only if I am running the web project?

like image 977
Joe Daley Avatar asked Jun 07 '10 12:06

Joe Daley


1 Answers

Yes, if you select the project, there is a start when debugging option (or similarly named) in the project properties window in VS; setting this to false disables this.

HTH.

like image 199
Brian Mains Avatar answered Oct 12 '22 22:10

Brian Mains