IIS Express continues to work after Visual Studio 2015 debugging session ends

I found a problem with Visual Studio 2015, IIS Express, and Update 1 for VS2015. I can run a debugging session without problems, but when I end a debugging session, IIS Express stays on. I want IIS Express to stop working when I stop a debugging session.

How can i do this?

+6
source share
1 answer

Try to make sure that "Edit and continue."

Right click on your project and go to properties. Click on the web section, then in the debugger make sure that the "Enable editing and continued" checkbox is selected.

IIS Express should stop automatically if this debugger is turned on.

http://blogs.msdn.com/b/webdev/archive/2013/07/11/enable-edit-and-continue-debugging-option-is-now-on-by-default-for-new-web- applications-in-vs2013-preview.aspx

0
source

All Articles