How to Prevent Visual Studio Debugging Stopping when Browser Closed

As a web developer it is really frustrating when you close the browser tab or window only for Visual Studio Debugging to assume that you're done with the debugger as well. Turning this setting OFF will keep Visual Studio Debugger running when you close browser windows.

By Tim Trott | C# ASP.Net MVC | August 11, 2019

Visual Studio has a setting that automatically stops the debugger from running when the project output window process is terminated. This however can be very annoying for three reasons. Firstly you may have closed the window by accident or not actually want the debugger to end. Starting the debugger again can take a long time to recompile and launch. Secondly, you may have opened up other websites on the same browser process, and stopping the debugger in Visual Studio will terminate the browser so you lose those tabs as well. This can also close other windows or tabs launched from the main project output browser.

Breaking the Link Between Visual Studio Debugger and the Browser

Luckily there is a setting within Visual Studio which will unlink the debugger and the browser so that closing the browser does not end the debugger, and ending the debugger does not close the browser.

To find this setting, open the Visual Studio Options dialogue from the Tools menu and select Options. From there, locate Web Projects from the Projects and Solutions navigation tree.

Prevent Visual Studio Debugging Stopping when Browser Closed
Prevent Visual Studio Debugging Stopping when Browser Closed

Now untick the option box that says "Stop debugger when browser window is closed, close browser window when debugger stops."

Click on OK and now the browser window will not close when you stop debugging, and when you close the browser window the debugger will continue running.

Was this article helpful to you?
 

Related ArticlesThese articles may also be of interest to you

CommentsShare your thoughts in the comments below

If you enjoyed reading this article, or it helped you in some way, all I ask in return is you leave a comment below or share this page with your friends. Thank you.

This post has 2 comment(s). Why not join the discussion!

We respect your privacy, and will not make your email public. Learn how your comment data is processed.

  1. NI

    On Tuesday 1st of November 2022, Niels said

    Thanks, this was the worst MVS default setting I have run into up until now.

  2. XA

    On Tuesday 17th of May 2022, Xanthis said

    Thank you very much that was easy enough