debugging - Visual Studio 2013; just my code - mycode.json -
i'm trying figure out mycode.json file can used in combination "just code" service of visual studio 2013. it's not making sense me know not "just code" is: http://blogs.msdn.com/b/visualstudioalm/archive/2013/11/25/just-my-code-for-asp-net-in-visual-studio-2013.aspx
this scenario have project using jquery libraries , own custom js file, called myconsents.js want able debug only, reason debugger keeps jumping jquery libraries. how mycode.json file looks like
{ "eval" : "mycode", "function" : "library", "scriptblock" : "unrelated", "mycode" : [ "myconsents.js" ], "libraries" : [ "*.min.js", "jquery.*.js", "jquery-*.js" ], "unrelated" : [ ] }
i hope can provide solution thanks
i found visual studio ignoring mycode.json
file because had put javascript-style comment @ beginning:
// http://msdn.microsoft.com/en-us/library/dn457346.aspx#bkmk_javascript_just_my_code { "mycode": [ ], "libraries": [ "*-min.js" ], "unrelated": [ ] }
vs started working expected after removing comment.
Comments
Post a Comment