Is there a way to turn off javascript debugging in VS 2013 when using Internet Explorer?
I have already unchecked the option Debugging -> Just-In-Time Debugging -> Script
, but whenever I start/debug my ASP.NET project (using IE), VS loads all script documents (js files) and shows them in the solution explorer.
Found an answer here that worked for me - a simple web.config tweak
http://www.poconosystems.com/software-development/how-to-disable-browser-link-in-visual-studio-2013/
You may do so either globally by changing the option from within Visual Studio:
Or by adding this line to your web.config files per project:
<configuration>
<appSettings>
<add key="vs:EnableBrowserLink" value="false" />
...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With