I am working on a project in which javascript files are dynamically loaded into a page by the server using a python script. I am trying to use visual studio to debug these javascript files by attaching to the appropriate IE process for the loaded page and using the script debugger.
The problem is that IE and Visual Studio identify the dynamically loaded scripts like this:
scriptLoader.py?get=Utils
but Visual Studio identifies the javascript source file like this:
Utils.js
Because of this, VS doesn't recognize these as being the same source and the only way I can debug is to cause an exception to occur so that IE opens VS and loads the copy that was served to the browser.
Is there any way to force VS to recognize that Utils.js and scriptLoader.py?get=Utils are the same source?