Is it possible to prevent VS2010 killing the WebDev.WebServer process?

284 Views Asked by At

Since I've starting using VS 2010 I've noticed that whne I stop the debugger it also kills the development web server. In VS 2008 I would regularly work without the debugger attached. Is it possible to do this in 2010?

2

There are 2 best solutions below

0
On BEST ANSWER

No it's not possible if you start Visual Studio with F5. It considers the web server the debugee process and will kill it at the end of the debugging session.

You can however start the process without debugging and continue to work with the web server for an extended period of time via: Ctrl+F5

0
On

Yes, just do not use the development web server ;)