Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Updating JScript intellisense hangs VS 2010

I have a web application and whenever I load it in VS 2010 RTM, the left hand corner of VS says "updating JScript intellisense" which never completes. When I click anywhere in the editor (becuase the solution has finished loading), I see a balloon on the right hand corner saying Visual studio is performing an internal operation...) and ultimately I have to end the VS process. Very frustrating.. I went ahead and disabled JScript intellisense as described here and that didn't help. Anybody has any clue in this?

like image 591
Ashish Gupta Avatar asked Aug 09 '10 07:08

Ashish Gupta


People also ask

How do I disable IntelliSense in Visual Studio 2010?

Select Tools/Options on the menu. On the Options dialog box, select Text Editor, then select the language you use, then select "General". Uncheck "Auto list members" and "Parameter completion".

What is IntelliSense JavaScript?

IntelliSense# Visual Studio Code's JavaScript IntelliSense provides intelligent code completion, parameter info, references search, and many other advanced language features. Our JavaScript IntelliSense is powered by the JavaScript language service developed by the TypeScript team.


2 Answers

Pin open your Output window to get specific information on what Visual Studio is doing. Chances are it is parsing js file links in your webpage, including master page and trying to download these files over the network or encountering an error trying make intellisense of them all. Try commenting out your javascript links, using local copies instead of remote, or attempt to resolve the specific errors. More info here.

like image 70
Trevor Daniels Avatar answered Sep 22 '22 13:09

Trevor Daniels


I restarted my machine and It resolved the problem. :-(

like image 31
Ashish Gupta Avatar answered Sep 22 '22 13:09

Ashish Gupta