Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 - Is it slow for anyone else?

I've read a lot of stuff about VS2010 being much more performant than VS2008. When I've finally installed it, I found that it, in fact, is much slower (save for the Add References dialog).

For instance, Silverlight projects take twice as long to load, the startup of the IDE itself is much slower, etc...

Am I missing something here or is it like this for everyone?

Specs: WinXP-32bit, 3.5GB RAM, 7200RPM drive, NVIDIA QUadro NVS 285 128MB, Cure2Duo E4400 @ 2GHz, PAE enabled.

like image 260
AngryHacker Avatar asked Jun 11 '10 21:06

AngryHacker


People also ask

Why does Visual Studio run so slow?

You might have extensions installed that slow Visual Studio down. For help on managing extensions to improve performance, see Change extension settings to improve performance. Similarly, you might have tool windows that slow Visual Studio down.

Does Visual Studio makes the PC slow?

Visual Studio severely slows down computer and causes unexpected crash when loading large Solution - Visual Studio Feedback.

Can I still use Visual Studio 2010?

The current channel of Visual Studio 2022, for instance, will get mainstream support until January 2027. Overall support will end in January 2032, nearly 10 years from now. Visual Studio 2019 version 16.11 gets mainstream support until April 2024. Visual Studio 2010 and earlier versions are no longer supported.


1 Answers

Try disabling, the hardware acceleration for WPF and let WPF render on software. This setting has helped me to load VS with my project almost 200% faster even after machine boot. This also helped me to get rid of the Splash screen at the beginning of VS 2010 start.

Go to Tools | Options, then select Environment | General. Then uncheck "Automatically adjust visual experience..." and "Use hardware graphics acceleration..."

enter image description here One more tip. Try forcing the garbage collection for the IDE by using Ctrl+Alt+Shift+F12. I have found this to be helpful....

This will be very helpful if you are flipping between lot of projects and also if you have lot of IDE's open for different projects.

And lastly if you have any extensions, try disabling the ones that are not used all times. Disabling codemaid helped me save a lot of time while typing and switching between code pages.

like image 198
user_v Avatar answered Nov 05 '22 13:11

user_v