Reputation: 1259
How can I prevent visual studio 2017 to open a new window when I tried to debug asp.net core application?
Previously it's used to open just a tab in web browser.
Upvotes: 0
Views: 84
Reputation: 51
It's a VS setting in your project properties. Open them and go to the Web tab and select "don't open page, wait for a request from an external app".
Upvotes: 0
Reputation: 602
Tools > Options > Dedugging > General > uncheck the option Enable JavaScript debugging for ASP.NET (Chrome and IE).
Upvotes: 1