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

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

A good list of Visual C++ tips is here: http://www.highprogrammer.com/alan/windev/visualstudio.html

link|flag
vote up 0 vote down

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

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

link|flag
vote up 0 vote down

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

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

link|flag
show 2 more comments
vote up 0 vote down

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

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|flag
show 1 more comment
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
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.