vote up 192 vote down star
266

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

1 2 next
vote up 204 vote down check

Here's my list. All of these can be accessed on Tools->Options menu:

  1. Disable F1. (Environment->Keyboard) This is probably the best advice that I found somewhere.
  2. Disable "Animate environment tools" (Environment->General).
  3. Disable Start Page (Environment->Startup).
  4. Disable "Track Active Item in Solution Explorer" (Projects and Solutions).
  5. Disable Navigation Bar (Text Editor->C#). I think this is available for every language.
  6. Set "AutoToolboxPopulate" to false (Windows Forms Designer).
  7. You can set the Code view as the default view when viewing Windows Forms. Just right-click on the cs file and select "Open With...".
  8. Open Visual Studio using the command line (devenv) rather than using the Start menu. I don't know why but I notice it loads faster.
  9. Turn off Track Changes. (Text Editor->Track changes)

Basically I just customized John Lam's settings. It's very minimal.

Last Resort:

  • Reset all settings (Tools->Import and Export Settings->Reset All Settings)

Related articles:

@Orion Edwards:

I agree. Snippets are really a time saver. Actually there's a snippet editor that you can use and I'm using it for a while now. You can find it here.

link|flag
1  
What about unload projects where possible. I sometimes have solutions with 10 to 15 projects in if I disable the ones I am not currently working on I get a good boost. Just have to remember to reload and build before any breaking changes to shared code. – petebob796 Jun 22 at 9:07
1  
Why F1 could slowdown VS? Why?? :-o – Isaac Sep 6 at 7:31
3  
Isaac, I think the biggest problem with F1 (at least it is for me) is that it is too easy to press by mistake when you try to press escape, and it takes forever to load the help if you do happen to hit it by mistake. – Doug McClean Oct 6 at 0:10
show 4 more comments
vote up 24 vote down

I use keyboard macros (control-shift-R) to get repetitive tasks done; you have to get the knack of it at first, but once you do, you can do a lot of stuff pretty quickly. For instance, you have:

DoStuff(1,2,"foo");
DoStuff(3,4,"bar");
DoStuff(123,123421,"baz");

... and so on for many lines, and you want to insert 'true' between the first and second arguments.

Put cursor at the start of the first line, then:

control-shift-R [start recording]
control-F [open 'find' dialog]
, enter esc [go to the next comma, close the find dialog]
type 'true,' [new text]
down, home [go to the start of the next line, so you're where you started]
control-shift-R [stop recording]

now you can just hit control-shift-P many times and it'll do that set of steps over and over again.

That's a simple example; you can do a lot of refactoring-like stuff pretty quickly this way, but it's also handy for wrangling big chunks of text for manual batch operations or whatever.

I'm sure if I learned how to do regexp search/replace, I could do the same sorts of things that way, but I got into this habit from using Brief a long while ago and I've stuck with thinking about "doing tasks the way I do them by hand", rather than turning them into regexps.

(presumably refactoring tools could do that particular operation, but I'm in C++ and none of them work very well there)

Other things:

  • CommentReflower is a great add-in if you tend to write big chunks of comment; the original's here, and there's a VS2008 port here.
  • control-K control-F -> automatically re-indent code, useful when things have got messy.
  • If you need to make the same change to a bunch of project settings, don't forget you can do find-and-replace-in-files on .vsproj files.
link|flag
vote up 12 vote down

My experiences are more for C++ than C#, but here goes... I'm taking "Optimizations" in an ambiguous term on multiple views (code optimizations, IDE speed up, compilation speed up), but they are all specific to Visual Studio environment.

  • For optimizations in code, have the compiler optimize by size rather than speed, not sure where I've heard this but someone once told me Microsoft compiles all their applications this way as well. Whether it is a myth or not, to me at least it makes sense (in most generic cases) because smaller code called often will have less cache miss. This is more for C++ than CLR based languages. Alternatively, if you know your target platform, you can probably target that rather than generic x86.
  • For speeding up in Visual Studio, I've noticed that if I have break-points view showing, it keeps flashing, as if it is updating over and over, so I hide it. Perhaps it is just me (and psychological).
  • For speeding up compilations, on one of the projects, it used to spew 1000+ warnings (it's a project mixed with C# and C++), and it used to take 20 minutes to compile (all the warnings was because of this). The point here is, having a lot of messages serialized to output causes slowdown, so pay attention to first sign of your warnings and fix it. I'd also imagine that Visual Studio's "Error List" panel has to collect the Warnings and Errors into that view, which causes extra slowdown when you have large amount of warnings.
  • Another speed-up for compilations, as somebody as mentioned, is Xoreax's IncrediBuild. But they don't work on C# (yet), only on Managed/Unmanaged C++. I used to be skeptical about distributed compilation because of my experiences with distcc, but it was because all my PC's at home are different speed, a heterogeneous distribution. At work, because of the homogeneous structure where all have similar speed, it works better. Also, distributed computing is only useful when you have machines to distribute to (* grin *) Somebody also mentioned Visual Studio's parallel compiling option (if you have multi-processors, you've probably seen messages while compiling of "1> Compling Proj1", "2> Compiling Proj2" (or something like that), where Visual Studio will compile N projects (where N = number of processors you define in your options). Unlike IncrediBuild, VS distributes by projects rather than by files, and this is only useful if you have multiple projects in single .SLN.
  • Another speed-up for compilations, some have mentioned increasing memory, although that would probably help, from my experiences, a faster drive is more beneficial than memory. I've seen 2 (similar performance) PC's compile the same exact projects side-by-side, one with faster drive than another, and the gain is significant. Bottlenecked on file I/O writing the .OBJ file or seeking for .cpp file, you get the picture. Back in the old-days, we used to output all the .OBJ files to RAM drives instead of hard-drives and that sped up a lot. But today, projects are probably too large to fit in a RAM drive or the performance of drive is so much better that it's not significant to do this.
  • For speeding up in Visual Studio for debugging, if you don't need it, don't include the symbols from Microsoft and you'll notice that your debugger loads faster into your applications.

I will edit/add more as I think of it.

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

I have a couple of recommendations regarding the build speed for Visual Studio 2008, related to the copying of files that occurs during the build.

Apart from the obvious recommendation of keeping the solution files small:

Defragment your hard drive

Disk performance is vital to the build speed. A daily, or at least, weekly defragmentation will facilitate this. If possible, schedule a nightly fragmentation to be performed automatically. Also, make sure you have plenty of room on the disk. The less space that is available, the fewer choises are available to the file system when deciding how to layout the files on the disk, and the faster the entropy on your disk will increase. Do you have several Source Control branches of your code checked out - why not delete the binaries from the old ones? You are likely to recompile them when you get back to working on those branches anyway.

Avoid Unnecessary File Replication

The standard setup for .NET solutions is that each assembly gets its own bin directory to which it is copied along with the assemblies of all its dependencies. If your solution contains an .EXE file and, say, 40 different assemblies. Does it really make sense to copy the dependencies of each assembly to each separate build directory? The target directory of the EXE should be enough. Another way to accomplish roughly the same would be to give the assemblies common output directories. That also avoids the copying. Some earlier versions of Visual Studio did not support this well, so be careful. I have, however, been using this approach with VS2008 for quite a while without noticing any problems.

Disable System Restore (Windows XP ONLY)

The implementation of System Restore in Windows XP actually creates backups of every DLL in the system every time they are modified. As compiling a .NET solution involves copying and overwriting many DLLs, this is assumed to impede performance. Windows Vista and Windows Server 2003 does not suffer from this problem. If you keep your source files on a separate logical drive, you can disable system restore for that particular drive and keep it enabled on your system disk.

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

You can improve the speed at which Visual Studio starts up by using the '/nosplash' option. Bring up the Properties of your Visual Studio shortcut, change to the Shortcut tab and amend the Target field as follows:

"C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe" /nosplash

link|flag
show 1 more comment
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
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 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 4 vote down

To avoid large delays when you run a large WinForms program in the debugger, close all Visual Forms Designer tabs, quit Visual Studio, then run VS again and load your project. Loading the Designer at all (even if you close it again) can cause these weird large delays when your program runs in the debugger.

Has anyone else experienced this?

How I found this out: I have a rather large C# WinForms solution with dozens of projects that used to take forever to run when I hit F5---even if I made only small changes and recompiled. Initially I thought it was due to the size of the solution, but later noticed that the compilation was finishing quickly, but there was a still delay before the main form would load. Later I found the same strange delay on another, new, smaller project and realized what I had in common: the Designer. Now I do all my design work in batches, and then close any Designer windows, quit VS, re-launch VS, and go back to coding.

link|flag
vote up 4 vote down

One thing that can speed things up significantly is turning off IntelliSense. Of course that will probably slow you down. But at my office we use VisualAssist, which albeit isn't free, but is better in a number of ways.

In any case, IntelliSense can't be disabled with a dialog box checkbox (as far as I know) but the process is pretty straightforward:

  1. Close VS.
  2. Remove the .ncb file next to the .sln file for any solution you work with.
  3. Delete or rename the file C:\Program Files\Microsoft Visual Studio 9.0\VC\vcpackages\feacp.dll. (The 9.0 part of the path will be different for versions other than VS2008.)
  4. (optional) Install some IntelliSense alternative like VisualAssist, or prepare to do a lot more typing.
link|flag
show 2 more comments
vote up 4 vote down

Ensure 'Only build startup projects and dependencies on Run' is selected.

This option can be found under Tools -> Options... -> Projects and Solutions -> Build and Run.

For large solutions this can save a significant amount of time.

NB it's propbably best practice to avoid very large solutions, but if you are forced to work with one then this can make all the difference.

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

Using tokens in Tools | Options | Environment -> Task List will slow things considerably when you have lots of instances of a token and a large number of files.

Also with a large number of VB.NET projects background compilation can be a dog so there was a hotfix for VS2005 that increased performance.

http://support.microsoft.com/kb/920805/en-us

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 2 vote down

If you are working with a team of developers, check out Incredibuild by Xoreax (or as we used to refer to them, "Planet Xoreax"). It very seamlessly sets up distributed compilation in Visual Studio. I used this at a past place of employment and it cut our build times from 40 minutes down to around 7 minutes.

Getting Incredibuild set up truly changed the way I went about my work - I was actually able to get a streamlined code-compile-test cycle going.

link|flag
vote up 2 vote down

One of the best enhancements I've found is to disable the onaccess scan of your anti-virus for the folder where your projects reside. Every time I did a build the IO of the virus checker decreased the speed.

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

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

@lomaxx: There's a way to track the active item only on demand.

I like this for at least a couple of reasons. One is that, especially in a big solution, working for a while with "track active item" turned on results in a large portion of the project tree being expanded, and thus a little hard to navigate.

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

If you're using the Visual Assist add-in and Visual Studio starts getting really slow and using a lot of RAM, you could try deleting the folder C:\Documents and Settings\\Local Settings\Application Data\VisualAssist\vs8.

I've had to do this twice in two years of using Visual Assist, and both times it's had a dramatic effect on my speed. Visual Assist now has to reparse everything, but it does that in the background, so it's not much of a penalty.

link|flag
vote up 1 vote down

The single biggest thing you can do to improve the speed of VS 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|flag
show 2 more comments
vote up 1 vote down

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

And i've observed on my system with Vista biz edition having 2gb ram on core 2 duo, that having VS, SQL Server Mgmt Studio and Outlook, all these 3 opened simultaneously has a major kick on performance.

If using TFS, then keeping the Source control explorer always open in VS08 too slows down VS. One can have a button to bring open SCE window on a toolbar.

link|flag
vote up 1 vote down

Snippet Designer On CodePlex

link|flag
vote up 1 vote down

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|flag
show 3 more comments
vote up 1 vote down

Try running your Windows machine using /3GB mode and making Visual Studio large address aware. Your IDE will have more RAM available to it and run much faster.

Refer to this link for reference and how-to:

http://stevenharman.net/blog/archive/2008/04/29/hacking-visual-studio-to-use-more-than-2gigabytes-of-memory.aspx

link|flag
vote up 1 vote down

The main thing I've found is disabling the "Use Visual Studio hosting process" under Project Settings->Debugging for C# projects. This fixes the problem where (on some machines) VS will freeze up for 30+ seconds after a launched project terminates, instead of letting control return to the code editor immediately.

link|flag
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
1 2 next

Your Answer

Get an OpenID
or

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