I'm trying to get Visual Studio 2008 SP1 to do intellisense for external javascript files, as described here by ScottGu, but it's not working.
I have an ASP.NET MVC project with several javascript files in the Scripts directory. All of the scripts are included on a master page. Intellisense is enabled, but it only gives me the basic javascript language stuff-- nothing defined in my scripts. I have tried adding /// <reference path="Global.js" />
comments to the top of the files, with no luck. It doesn't work in script blocks in the master page either. Is there something else I need to do to get this working?
Edit: I'm not using jquery. From Scott's article it didn't sound like I needed any -vsdoc.js files; is this incorrect? If so, where do these files come from for my own external scripts?