Intellisense Broken after LINQ installation in Visual Studio 2005
IT Chapters, Tip 4 Comments »Yes, its a known issue! I stumbled across this problem after installing LINQ a while back. Luckily there is a fix for the problem. Just follow the steps below in the order provided and Visual Studio will be back up and running as expected.
- Close Down Visual Studio
- Start Regedit
- Open the following key: HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\8.0\Packages\{A066E284–DCAB-11D2–B551–00C04F68D4DB}\SatelliteDLL
- Edit the “Path” value and change it from:
“C:\Program Files\Microsoft Visual Studio 8\VC#\VCSPackages\1033\”
to
“C:\Program Files\Microsoft Visual Studio 8\VC#\VCSPackages\” - Go to C:\Program Files\Microsoft Visual Studio 8\Common7\IDE and run the following commands in order:
- devenv /setup
- devenv /resetuserdata
- devenv /resetsettings CSharp
After this, restart Visual Studio. Your intellisense and smart tags will now be working as expected.
Have fun!