How can I disable __vwd/js/artery in VS.NET 2013?

Visual Studioasp.net Mvc-4

Visual Studio Problem Overview


I've upgraded to VS.NET 2013, and now, every time I start to debug an ASP.NET MVC4 app in IIS, some how __vwd/js/artery is created, this script is interfering with my RequireJS setup and it crashes the jQuery reference.

Does anyone know how can i get rid of this script?

__vwd/js/artery

window.vwdTempJQuery = window.jQuery = window.$;
window.jQuery = window.$ = null;
window.vwdTempJSON = window.JSON;

*! jQuery v1.8.2 jquery.com | jquery.org/license */

.....

// Restore original jQuery references.
window.jQuery = window.$ = window.vwdTempJQuery;
window.vwdTempJQuery = null;
// Restore original JSON.
if (window.JSON !== window.vwdTempJSON)
    window.JSON = window.vwdTempJSON;

....

LE: It has been fixed in Visual Studio 2013 RTM

Visual Studio Solutions


Solution 1 - Visual Studio

A friend of mine found it, it's Enable Browser Link enter image description here

Solution 2 - Visual Studio

I found that it was still running until I actually added a value for it in the Web.config appSettings to turn it off.

<add key="vs:EnableBrowserLink" value="false" />

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
QuestionStefan P.View Question on Stackoverflow
Solution 1 - Visual StudioStefan P.View Answer on Stackoverflow
Solution 2 - Visual StudioAndrew DuffyView Answer on Stackoverflow