how can i stop (automatically) development server when i stop debugging in visual studio?
+1
A:
There is no way to get the Asp.Net development service to automatically stop when you hit the "stop debugging" button, as all that does is detach the debugger. You could however explicitly kill the process yourself (which would in turn cause VS to stop debugging).
This question shows how you might do this in a Macro:
Kragen
2009-08-26 15:06:56
A:
Enabling "Edit & Continue" on the web server project worked for me. It doesnt shutdown cassini when you stop debugging, but it does restart cassini when you start debugging.
mat3
2010-01-19 23:02:12