Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Do not open new browser instance

People also ask

How do I stop Visual Studio from opening a new browser window?

Go to Project Properties > Debug > Uncheck "Launch Browser" > Save.

How do you stop browser closing automatically when you stop debugging on VS 2022?

To find this setting, open the Visual Studio Options dialog from Tools menu and select Options. From there, locate Web Projects from the Projects and Solutions navigation tree. Now untick the option box that says "Stop debugger when browser window is closed, close browser window when debugger stops."

How do I change the default browser in Visual Studio 2019?

Tools -> Options -> Search for "browser" -> View Source in "external editor" -> put the path to your preferred.

How can I open a website in Visual Studio 2019?

Start Visual Studio, on the File menu select New, and then select Project. In the New Project dialog box, select Visual Basic or Visual C# as the programming language. In the Templates pane, select ASP.NET Empty Web Application, and name the project SofiaCarRentalWebApp. Click OK to create the solution and the project.


I've discovered that Turning off Javascript debugging means that sites open in a new tab of an existing Chrome instance. From what I've seen the in Visual Studio debugging is not as good as Chrome's dev tools so turning this off is not an issue for me.

Turn off javascript debugging

UPDATE

As of VS2017 15.7.1 (and still the case in VS2019 16.0.0 and VS2022 17.0.0 PREVIEW) this fix no longer works and I've found I've had to additionally uncheck Stop debugger when browser window is closed

enter image description here


There is solution to that problem. Very Simple please follows the below Steps.

  • Open Visual Studio
  • Go to "Tools" and then go to "Options"
  • Select "Projects and Solutions" and in that select "Web Projects"
  • Please uncheck this Option "Stop debugger when browser window is closed, close browser when debugging stops"
  • Click Ok

Now start project, it will not open in new chrome Instant but in a already running Chrome Instant.


You can disable the website from being launched at all from the debug settings.

ProjectSettings-Debug

Once the web application is running you can launch the website from the taskbar.

enter image description here

The "Browse With..." menu option appears to launch the website without running the debug session in VS2017 which might not be what you want.


I wanted to share the reason of the issue as well as the screen shot. The reason for which it opens a new window is because JS debugging is enabled. Chrome is launched with debugging enabled so a new instance is required. If you want to revert to the old behavior from Visual Studio 2015, you can do so but you would have to disable JS debugging. See below:

enter image description here

Original Source

Original Discussion on Visual Studio Forum