How to disable the new debug window in VS2017

Visual StudioVisual Studio-2017

Visual Studio Problem Overview


I'm using Visual Studio 2017 RC and getting very frustrated with the new Chrome window that pops up when you click Debug.

Issues with the Debug Chrome Window:

  • Takes ages to start/"attach" website (I think it's attaching all the javascript debugging which I don't need because I use Chrome DevTools for that anyway)
  • Not dockable (as a tab) with other Chrome windows
  • Doesn't remember form history. If I'm testing out forms I can't autocomplete form data, so I have to type the whole lot out every time
  • Doesn't remember url history. If I'm testing a specific page on my site, I can't quickly select the url from Chrome url bar dropdown. Have to type the url in full
  • Extensions aren't enabled so I can't use my ruler or color picker extensions
  • Chrome window closes when debugging stops so I have to open up a new window to keep browsing the local site

Does anyone know how to disable this new Debug style window and go back to how it was in VS 2015?

Visual Studio Solutions


Solution 1 - Visual Studio

I'm not sure if this came with the latest VS 2017 Update, but inside Debug -> Options you can disable it now.

Just uncheck the highlighted one: enter image description here

Solution 2 - Visual Studio

For thoose, who have the 15.7 update and unchecking the JavaScript options doesn't do the trick, found a solution here:

https://blogs.msdn.microsoft.com/webdev/2016/11/21/client-side-debugging-of-asp-net-projects-in-google-chrome/

Tools > Options > Projects and Solutions > Web Projects, uncheck “Stop debugger when browser window is closed”

Solution 3 - Visual Studio

This is not an issue, rather a new feature in VS 2017. Previously we could only debug JS and TypeScript using IE in debug mode (of VS). But now they have introduced debugging JS and TS inside VS using Remote Debugging feature of Chrome. If you are running your application in debug mode (pressing F5) and Chrome is selected browser, Visual studio 2017 will try to open a remote debugging session with Chrome on a dedicated port. With remote debugging,

  1. The browser is launched in plain mode, i.e. no extension and no history etc. Remote debuggin doesnt work with an existing instance of Chrome already running.

  2. You always see this window for a while. At this point, VS is trying to attach the remote debugger to VS

enter image description here

  1. To go back to VS 2015 experience of debugging, change the debugging target from Chrome to IIS Express.

This post describes this feature in detail. https://blogs.msdn.microsoft.com/webdev/2016/11/21/client-side-debugging-of-asp-net-projects-in-google-chrome/

> A kind of quick work around is to press F5 and launch the debug > session and forget about the newly opened Chrome window. Go to your > normal Chrome instance and just open your site in new tab. You will > still be able to debug and do everything because IIS Express will > still be running your app at that port.

Update: The answer given below by @Steveadoo is the right way going forward. The option shown in his screenshot controls how chrome is launched for debugging. Uncheck it if you want to stick to your regular Chrome instance.

Hope this helps.

Solution 4 - Visual Studio

For VS 2017, Go to Tools -> Options -> Projects and solutions-> web projects and uncheck the last option as shown in image.

Also you can refer here: https://www.johanbostrom.se/blog/how-to-disable-the-built-in-chrome-from-starting-when-debugging-in-visual-studio-2017

enter image description here

Solution 5 - Visual Studio

Here is the Microsoft blog about this new functionality, and how to revert.

https://blogs.msdn.microsoft.com/webdev/2016/11/21/client-side-debugging-of-asp-net-projects-in-google-chrome/

Here is the path I followed to disable:

Debug > Options > Debugging > General > (uncheck) Enable JavaScript debugging for ASP.Net (Chrome and IE).

Solution 6 - Visual Studio

enter image description hereIn VS menu click:

Tools > Options > search for "browser projects" > untick the last option "Stop debugger when browser window is closed.

this will do the job.

Solution 7 - Visual Studio

Debug > Options > Debugging > General > (uncheck) Enable JavaScript debugging for ASP.Net (Chrome and IE).

Tools > Options > Projects and Solutions > Web Projects, uncheck “Stop debugger when browser window is closed”

works for me, visual studio professional 2017, v 15.7.3

Solution 8 - Visual Studio

I'm using Visual Studio 2017, and what worked for me is a combination of these two options:

  1. Disable JavaScript debugging in Debug -> Options -> Debugging -> General Enable JavaScript debugging for ASP.Net.
  2. Disable stop debugging when browser is closed in Debug -> Options -> Projects and Solutions -> Web Projects -> Stop debugger when browser windows is closed, close browser when debugging stops.

When I used only one of these two it did not work.

Solution 9 - Visual Studio

if you look to JavaScript case

For Enabling and Disabling JavaScript Debugging in VisualStudio is the same on all versions

  • Tools menu
  • Options...
  • Debugging -> General
  • Uncheck "Enable JavaScript debugging for ASP.NET"

Solution 10 - Visual Studio

In Visual Studio 2017:

enter image description here

If it prompts you again to turn JS debugger on again, choose another option (It will continue to prompt you if you have breakpoints in your script code):

Turn off script debugger

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmejobloggsView Question on Stackoverflow
Solution 1 - Visual StudioSteveadooView Answer on Stackoverflow
Solution 2 - Visual StudioKatja BrazView Answer on Stackoverflow
Solution 3 - Visual StudioUsmanView Answer on Stackoverflow
Solution 4 - Visual StudiochitraView Answer on Stackoverflow
Solution 5 - Visual StudioRyan BokenView Answer on Stackoverflow
Solution 6 - Visual StudioAli JamalView Answer on Stackoverflow
Solution 7 - Visual StudioAvner PinheiroView Answer on Stackoverflow
Solution 8 - Visual StudioMykhailo SeniutovychView Answer on Stackoverflow
Solution 9 - Visual StudioHamit YILDIRIMView Answer on Stackoverflow
Solution 10 - Visual StudioSum NoneView Answer on Stackoverflow