vote up 198 vote down star
286

Visual studio is a pretty awesome IDE, but sometimes you just wish it would go faster. I was wondering if people have any tips or tricks to help speed up visual studio in day to day use.

Things that I'm particularly interested in are speeding up build times and switching aspx files from source to design view seem to bring it to a grinding halt.

Having said that, I'd be keen to hear anything that anyone uses to make VS run that little bit faster.


Edit: Merged answers from related question, covering VS2008SP1. Please include any optimisations specific to the latest IDE.

flag
4  
"pretty awesome" is not good enough anymore! – pbartek Feb 27 at 20:47
show 2 more comments

40 Answers

prev 1 2
vote up 1 vote down

Life Changing XAML Editing Tip

If you get annoyed at VS hanging for a few seconds when you try and edit XAML, this will improve things no end. It works so well I dont really understand why its not the default behaviour.

http://weblogs.asp.net/fmarguerie/archive/2009/01/29/life-changer-xaml-tip-for-visual-studio.aspx

link|flag
vote up 0 vote down

@Dan Mitchell: that reminds me of another great keyboard shortcut:

Ctrl+R, E will encapsulate a field (you have to have your cursor on the field). It's somewhat redundant in VS2008 where you can have automatic properties, but it's excellent for VS2005

link|flag
vote up 0 vote down

A good list of Visual C++ tips is here: http://www.highprogrammer.com/alan/windev/visualstudio.html

link|flag
vote up 0 vote down

Disabling the Splash screen seems (psychological?) to make VS load faster.

To disable it, modify the shortcut to this: "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe" -nosplash

A macro that replaces F1 with an open firefox and google for the selected word is nice too.

link|flag
vote up 0 vote down

I wrote a smallish post on increasing the load time on larger project that some might find interesting get it here

link|flag
vote up 0 vote down

I'd recommend moving your VS solution to a RAM drive. That speeded up my Visual Studio (especially operations like "Find in files" are lightning fast).

I would recommend either a free Gavotte Ramdisk or commercial product from QSoft.

I used Gavotte (which is quite fine) and now I'm running on QSoft (it can automatically save/load your ramdrive content on shutdown/startup and/or defined time/time-intervals).

BTW. QSoft prices start from 12$ (much less than their competition).

NOTE: I'm not a related to QSoft other than just happy customer :)

link|flag
vote up 0 vote down

The very best optimization of all : Check for Visual Studio Updates

link|flag
show 2 more comments
vote up 0 vote down
  1. Incredibuild is really amazing stuff. In my case reduced compilation time from 30 min to 7 min and computer is not frozen so you can do some other things in parallel.
  2. RAM disk if possible
  3. If you have 2 HDD, put the source code and SWAP on different drives.
link|flag
vote up -4 vote down

A slightly philosophical answer, do less, KISS (Keep It Simple, Stupid)

Don't gold-plate your code, don't create a highly complex database driven framework if a simple class will do

link|flag
show 1 more comment
vote up -4 vote down

Increasing the speed of Visual Studio? Why not instead increase your efficiency with the tool instead?

I'm open to either. Or anything that helps me increase productivity is a bonus. ReSharper is definitely high quality, although I have a fair few of the default features turned off because of the slow down.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.