Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable JavaScript debugging in Visual Studio 2013

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.

like image 400
M4N Avatar asked Aug 21 '14 09:08

M4N


1 Answers

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: enter image description here

Or by adding this line to your web.config files per project:

<configuration>
    <appSettings>
        <add key="vs:EnableBrowserLink" value="false" />
        ...
like image 146
Nigel Wilson Avatar answered Sep 24 '22 14:09

Nigel Wilson