Stop debugging stops the site (even when editing and continuing) in vs 2015 U2

I recently installed the VS 2015 update.

In Update 1, when I stop debugging a site running on IISExpress, it does not stop the site.

There are several reports of enabling this behavior by disabling editing and continuing.

  • IIS Express Immediate site shutdown after a web application stops
  • How can I prevent Visual Studio 2013 from closing IIS Express when debugging is complete?
  • Visual Studio debugger, do not stop the website on stopping debugging

Turning off editing and continuing in Update 2 no longer looks like this, is there any other work to keep the site running when the debugger stops?

+7
debugging visual-studio visual-studio-2015
source share
2 answers

Visual Studio 2015 3 update seems to have resolved this issue, happy days for me :)

0
source share

This, apparently, is a bug in Update 2, which is reported here , and I hope it will get enough speed for MS to take action sooner rather than later.

In the meantime, you can disable everything from the debug menu, rather than stopping the debugging process.

enter image description here

If you want to disconnect everything on your toolbar, you can do this through the "Tools", "Customize" menus and under the commands, select the "Toolbar" radio amateur and select "Debug" from the drop-down list. Add a command, select "Debug" and select the "Detach All" command.

enter image description here

which then gives you this

enter image description here

+11
source share

All Articles