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
20  
"pretty awesome" is not good enough anymore! – user37468 Feb 27 '09 at 20:47
3  
@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
1  
odd that this has a lower score than amount of favorites/stars... – Robert S Ciaccio Aug 26 '11 at 2:57
4  
'Not constructive'? Obviously hundreds of people find this post useful. – Matt Hickford Mar 19 at 10:05
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 for guidance on how to improve it.

47 Answers

1 2

The single biggest thing you can do to improve the speed of Visual Studio is to not use an integrated source code control system. All the checking it does to put the right icons in the solution tree takes FOREVER.

link|improve this answer
show 2 more comments
feedback

If you are using Windows Vista, change the theme to Windows standard, in short stop using the Aero thing.

And I've observed on my system with Windows Vista business edition having 2 GB RAM on Core 2 Duo, that having Visual Studio, SQL Server Management Studio and Outlook, all these three opened simultaneously had a major kick on performance.

If using Team Foundation Server, then keeping the Source control explorer always open in Visual Studio 2008 too slows down Visual Studio. One can have a button to bring open the SCE window on a toolbar.

link|improve this answer
feedback

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

I would recommend either the free Gavotte RAM disk or commercial product from QSoft.

I used Gavotte (which is quite fine) and now I'm running on QSoft (it can automatically save and load your RAM drive 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 being a happy customer :)

link|improve this answer
show 5 more comments
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 Visual Studio load faster.

To disable it, modify the shortcut to "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
  1. IncrediBuild is really amazing stuff. In my case, it 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 two HDDs, put the source code and swap file on different drives.
link|improve this answer
feedback

Use the magic C++ "Unity build" technique... It's actually amazing: 20 min to 3 min minimum rebuild/link time for us.

link|improve this answer
feedback

It may help installing more memory, but I've already got 4 GB RAM in my machine. However, I read a post from Scott Guthrie, Tip/Trick: Hard Drive Speed and Visual Studio Performance a while back that said he installed a solid state drive in his laptop and got a nice speed boost.

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

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

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

link|improve this answer
feedback

Are you also referring to shortcut keys to speed up development time? If so, Alt + highlight with a left mouse click allows you to select a "box" of text. It is extremely useful.

link|improve this answer
show 3 more comments
feedback

I wrote a smallish post, Increasing your project's build efficiency, on increasing the load time on a larger project that some might find interesting get.

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
7  
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.