up vote 417 down vote favorite
514
share [g+] share [fb]

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 Visual Studio run that little bit faster.


Edit: Merged answers from a related question, covering Visual Studio 2008 SP1. Please include any optimisations specific to the latest IDE.

link|improve this question
16  
"pretty awesome" is not good enough anymore! – user37468 Feb 27 '09 at 20:47
2  
@pbartek nothing is "good enough" forever.. :) – Macke Oct 15 '09 at 16:16
1  
VS2010IDE is better :D – Anonymous Type Aug 31 '10 at 22:42
show 2 more comments
feedback

closed as not constructive by Will Sep 12 '11 at 16:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

47 Answers

1 2

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|improve this answer
show 5 more comments
feedback

In Visual Studio 2010 - disabling GPU acceleration can make a huge difference in editor response/sluggishness even with workstation-class graphics cards (like older Nvidia Quadros).

This is also true of Adobe Photoshop CS4 and later - it seems to me the "detection" isn't exactly smart enough to evaluate the actual performance of the GPU before enabling it ^^

link|improve this answer
show 2 more comments
feedback

Another little performance boost I remembered this morning:

If you don't need XML Documentation, you can turn it off by right clicking in your project in solution explorer, selecting Properties -> Compile tab and uncheck the "Generate XML Documentation File" option

link|improve this answer
feedback

I suggest the reading of "Visual Studio Hacks" by James Avery. There are a lot of hint to better use your favorite IDE ;)

link|improve this answer
feedback

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|improve this answer
feedback

One of the best ways to speed up a computer doing almost anything is to install more memory. You pretty much can't go wrong with that.

I've got 4GB ram in my machine, however I read a post from ScottGu a while back that said he installed a solid state drive in his laptop and got a nice speed boost. I might have to dig that article up I think

edit: It's been dug up

link|improve this answer
feedback

are you also referring to short cut keys to speed up development time?

If so, ALT + highlight with left mouse click allows u to select a "box" of text. Extremely useful.

link|improve this answer
show 3 more comments
feedback

@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|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
show 2 more comments
feedback
  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|improve this answer
feedback

Use the magic C++ "Unity build" technique... http://buffered.io/2007/12/10/the-magic-of-unity-builds/

it's actually amazing: 20min to 3min minimum rebuild/link time for us.

link|improve this answer
feedback

Very useful batch (*.bat) file execution

Basically automating command line scripts execution. I usually write few DB scripts that recreate the whole DB of the project. These scripts are version controlled. I also use a batch file that runs all of these on my local DB. Running this batch file within Visual Studio can easily be enabled by adding and additional editor for batch files.

Read this blog post where I explain the whole process step by step.

link|improve this answer
feedback

A very obvious solution, but go to task manager and kill any processes that you don't need.

Here's my test: Standard build: 1.04 minutes "Only Build Startup and dependancies": 53 seconds build time "Selected projects only": 1.17 minutes build time "Killing unnessary processes": 4 seconds.

I'll repeat that; 1 min 4 seconds to 4 seconds by just killing processes you don't need! :)

link|improve this answer
6  
excuse me but this sounds like very bad advice. If you don’t need the programs, just close them (or shut them down if they are services). Don’t just kill processes. That’s confusing causation with correlation and reminds me of cargo cult programming. – Konrad Rudolph Feb 9 '11 at 12:29
feedback

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|improve this answer
8  
Nothing to do with the IDE. – Nick Bedford Oct 6 '09 at 0:23
feedback
1 2

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