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
up vote 357 down vote accepted

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|improve this answer
18  
+1 for the F1 key remove! always wanted to change that. thx! – Peter Gfader Apr 17 '09 at 12:08
6  
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. – PeteT Jun 22 '09 at 9:07
7  
A small wrinkle on disabling the start page: I find "Recent Projects" on the start page very useful, as hovering over a project name provides the full path to the project/solution in the status bar. Rather than disabling the start page, I clear the Start Page news channel. Still get snappy loading, plus useful info. – Dan Blanchard Sep 4 '09 at 15:37
5  
Why F1 could slowdown VS? Why?? :-o – Isaac Sep 6 '09 at 7:31
40  
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 '09 at 0:10
show 7 more comments
feedback

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|improve this answer
1  
Upvoted because it is very similar to the accepted answer. Recorded macros are really nice (didn't know VS has them and have been using notepad++ for that) but in this case, something like Eclipse's 'refactor method' is what you really want. – drhorrible Apr 28 '10 at 6:23
show 1 more comment
feedback

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|improve this answer
5  
Does this really improve the actual speed, or just the perceived speed? – Kyralessa Mar 14 '11 at 20:17
show 1 more comment
feedback

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|improve this answer
1  
Seconding the recommendation to defrag; building our app on my machine went from 40-70 minutes down to 15-20 after cleaning up and defragging. I was amazed how much difference it made, to be honest. – Dan Mitchell Aug 13 '09 at 18:31
5  
Use an SSD drive instead of a traditional HD – Peter Gfader Jan 15 '10 at 14:55
feedback

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

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|improve this answer
4  
Note that you can configure your own build configurations (on top of debug and release), I have one called 'work in progress' where I only rebuild the projects I know I'm working on. – Benjol Sep 8 '09 at 6:31
show 1 more comment
feedback

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

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|improve this answer
1  
I can't for the life of me understand why anybody would want to cram 2k lines of code into a single file? – Lars Mæhlum Oct 6 '08 at 12:54
1  
Resharper 4.5 will be out shortly, and the beta version is much faster than 4.1. – womp Mar 24 '09 at 19:35
1  
ReSharper 4.5 is still too slow, and causes me to wait minutes while it updates it's cache and parses my files. But the productivity tradeoff is still positive, so I keep using it... – Alex Czarto Apr 21 '09 at 13:34
3  
Don't even try to use Resharper if you do dev in a VM environment, unless your VM is running on an SSD.... – womp Apr 12 '11 at 22:26
show 2 more comments
feedback

Also: turn off HTML and CSS validation, making it easier to spot the actual errors in the Error list.

Under Tools -> Options -> Text Editor

  • Turn off HTML validation: HTML -> Validation -> Untick 'Show errors'
  • Turn off CSS validation: CSS -> Miscellaneous -> Untick 'Detect errors'.

(Use Firefox's HTML Validator instead, or similar)

link|improve this answer
5  
Because we're better off validating HTML and CSS elsewhere, rather than inside Visual Studio. You'd very often want to see actual build errors in the Error list rather than HTML and CSS errors - which, actually might not be errors - only Visual Studio misinterpreting web standards. Also, Visual Studio doesn't have support for XHTML Strict and I guess that means no validation for XHTML Strict, which probably is one of the most used doctypes on modern websites. – Martin S. Oct 6 '10 at 11:21
show 1 more comment
feedback

From my empirical testing, Visual Studio experiences an inverse linear relationship between UI responsiveness and number of projects "loaded". When I say "Visual Studio", I really mean "Visual Studio and ReSharper", because AFAIK most people work with ReSharper or a similar tool installed. I do not know if this slowdown is seen without ReSharper.

Reducing the project count is not always possible or desirable. However, unloading projects you are not currently working on mitigates the performance issue. BUT, doing so can break the build from with Visual Studio and/ or cause problems to be hidden when you make a change that affects an unloaded project.

THE SOLUTION: "unload" all projects you are not working on (or as many as is needed for performance to be tolerable) and perform builds from the command line, using the multi processor option.

This approach ensures Visual Studio remains responsive and useful, whilst at the same time a full compilation is performed.

This sounds like a very simple solution, and it is - but it can have a HUGE impact on productivity.

In summary - for large solutions use visual studio as a plain-old text editor and leave the compilation heavy lifting to MSBuild, invoked externally from the command line.

link|improve this answer
1  
As an added bonus, if you group your projects into a solution folder, you can unload/reload a batch of projects at a time. – Paul Alexander Sep 12 '11 at 21:28
feedback

Empty your Recycle Bin.

link|improve this answer
feedback

Life Changing XAML Editing Tip

If you get annoyed at VS hanging for a few seconds when you try and edit XAML the following link 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|improve this answer
show 1 more comment
feedback

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

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|improve this answer
1  
Careful about this - We've deleted the .ncb file and replaced it with a .ncb folder (eliminating the ability to create intellisense files) and it has played havoc with the Windows Form Designers... especially when you have custom controls – Fry Nov 11 '08 at 18:05
show 3 more comments
feedback

This is not related to performance of the IDE (buying more ram and an SSD goes a long way towards that), but to the performance of you (ie: your personal productivity).

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

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|improve this answer
show 1 more comment
feedback

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|improve this answer
2  
This is especially true with running Visual Studio 2010 on a 32-bit system, in conjunction with TFS, MSTest and a couple of other things. VS2010 is designed to keep the maximum virtual memory usage at about 1.6 GB, but if you're doing a lot of stuff, free memory in the process can get pretty fragmented, and eventually you hit a point where you can't even do basic operations like copy/paste anymore. – Warren Jun 22 '10 at 4:13
1  
Also, the /3GB switch is an XP thing... you need to use the BCDEDIT command-line tool on Vista and later. – Warren Jun 22 '10 at 4:13
feedback

This is not a Visual Studio enhancement, but Windows enhancement.

There is a tiny tool called KatMouse that I cannot live without. KatMouse make any window or component scroll without focus, when mouse pointer is over it and mouse wheel is used. So you don`t have to click the window or component to set focus and then scroll, you can just point mouse over it and scroll.

Very useful for programmers of course!

However, this does not work in Visual Studio 2010 as they have a custom window management.

link|improve this answer
1  
I <3 KatMouse. I keep it in my dropbox so I can always install it on any new windows machines. – Robert S Ciaccio Aug 26 '11 at 2:55
show 1 more comment
feedback

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

Something that has saved me a few seconds here and there is a macro I found a while back that allows you to attach to the aspnet_wp.exe process for debugging. This way the IDE doesn't launch a new browser/tab every time you hit run or F5. This can be annoying if you're deep within a project and launching at the project start up page isn't beneficial. There are probably other ways to do this but binding the 'AttachToWebServer' macro below to a keyboard shortcut has served me well.

Public Sub AttachToWebServer()

	Dim AspNetWp As String = "aspnet_wp.exe"
	Dim W3WP As String = "w3wp.exe"

	If Not (AttachToProcess(AspNetWp)) Then
		If Not AttachToProcess(W3WP) Then
			System.Windows.Forms.MessageBox.Show(String.Format("Process {0} or {1} Cannot Be Found", AspNetWp, W3WP), "Attach To Web Server Macro")
		End If
	End If

End Sub

Public Function AttachToProcess(ByVal ProcessName As String) As Boolean

	Dim Processes As EnvDTE.Processes = DTE.Debugger.LocalProcesses
	Dim Process As EnvDTE.Process
	Dim ProcessFound As Boolean = False

	For Each Process In Processes
		If (Process.Name.Substring(Process.Name.LastIndexOf("\") + 1) = ProcessName) Then
			Process.Attach()
			ProcessFound = True
		End If
	Next

	AttachToProcess = ProcessFound

End Function

Also, the code highlighting above is dieing on the backslash in the LastIndexOf method but the code is accurate, pasted directly from my macro editor.

link|improve this answer
show 2 more comments
feedback

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

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

link|improve this answer
show 1 more comment
feedback

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

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

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

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

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

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

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