JScript intellisense update freezes VS 2010

I have a web application, and whenever I upload it to RTM VS 2010, the left corner of VS says “JScript intellisense update”, which never ends. When I click anywhere in the editor (because the solution finished loading), I see a balloon in the right corner saying that Visual Studio is doing an internal operation ...), and ultimately I need to finish the VS process . Very frustrating .. I went ahead and turned off JScript intellisense as described here and it did not help. Does anyone have a clue to this?

+5
source share
3 answers

I restarted my machine and solved the problem .: - (

+2
source

Open the output window to get specific information about what Visual Studio does. Most likely, this is a parsing of js file links on your web page, including the main page and an attempt to download these files over the network or an error that attempts to make intellisense out of all. Try commenting out your links in javascript using local copies instead of remote, or try to fix certain errors. More info here

+3
source

Maybe I was late with the answer to this question, but found a way to disable JScript Intellisense. After that: http://msdn.microsoft.com/en-us/library/ecfczya1.aspx , in the options "Text Editor" select JScript. In the "General" options, uncheck the boxes "Automatic list items" and "Parameter information." It worked for me.

+1
source

All Articles