vote up 192 vote down star
267

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
3  
"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

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|flag
vote up 3 vote down

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.

link|flag
show 1 more comment
vote up 3 vote down

I'm a big fan of snippets, they really speed up the work. And as you all know, programmers are lazy even to type. :-)

Here are two snippet editors for VB.NET: for VS 2005 and for VS2008

and here is a very nice collection of snippets: for VS 2005.

Have fun

link|flag
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
vote up 6 vote down

Increasing the speed of Visual Studio?
Why not instead increase you efficiency with the tool instead?
I use ReSharper at all times when programming in C#, and though it will slow down VS pretty bad, I still code way faster with it..

But I am very exited about the supposed performance gains in Vs 2008 Sp 1. 2008/2005 was an enormous performance boost, and I hope they can keep it up.

link|flag
show 5 more comments
vote up 6 vote down

I find that if you are using a solution with a ton of files, the detection for file changes slows things down, especially if you are editing files on a shared folder. This doesn't work as well if you use a command-line source control system, of course.

  • Environment \ Documents \ "Detect when file is changed outside the environment"

Note that the same setting exists in almost all editors, and makes a big difference when editing files on a share.

link|flag
vote up -3 vote down

@Christian: Thanks for the heads up on VS2008 SP1, installed it and it's already making a noticeable difference to switching between design and source view

@John: those are all great tips altho I find tracking the active item in solution explorer is something I can't do without

@Orion: Snippets are quality. I've been using them for a while. In the same vein, I'd recommend people commit Jeff's post on VS keyboard shortcuts to heart.

@Ed: I think Scott Hanselman had a post on something similar a while back... might have to dig that post up actually now that I think about it.

link|flag
vote up 2 vote down

If you are using Visual Studio 2008, you can compile using the /MP flag to build a single project in parallel. I have read that this is also an undocumented feature in Visual Studio 2005, but have never tried myself.

You can build multiple projects in parallel by using the /M<maxprojects> flag, but this is usually already set to the number of available cores on the machine.

EDIT: I'm sorry, this is only for VC++ I believe, I should have read more carefully.

link|flag
vote up 6 vote down

This is not related to performance of the IDE (buy more ram), but to the performance of YOU.

Learn about and use snippets, and the advanced text editor shortcuts.

Once you learn to use the snippets in e-texteditor and textmate, you'll never want to code without them, and VS 2005/8 can support snippets.

Unfortunately, the Microsoft Snippet syntax is verbose and crappy (XML!), and there's no inbuilt-editor, you have to roll the .snippet xml files yourself and import them, but it's still well worth doing.

For example I have a snippet asnn which expands to Debug.Assert( [object] != null );

That alone has made it noticeably nicer to use

I also have Ctrl+Shift+k bound to Edit.LineDelete and Shift+Enter bound to Edit.LineOpenBelow - mimicking E/Textmate. Those are awesome.

link|flag
show 4 more comments
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.