views:

1890

answers:

4

I'm using visual studio 2008 and ReSharper 4 and it's kind of slow. My machine has 2 GB of RAM, dual core processor and a 7200 rpm hard disk. I know more RAM and a faster hard disk could improve performance, but do you have any tips to improve ReSharper/Visual Studio performance?

A: 

I'm having the exact same issue, and from the JetBrains site, it looks like they sort-of know about it but aren't admitting anything. Turning off solution-wide analysis does seem to help quite a bit.

Stu
+1  A: 

Turn off the annoying RSS reader

  • Tools, Options, Environment, Startup

Turn off all the animations

  • Tools, Options, Environment, Animate Environment Tools

Install the recent Service Pack

Clean out your WebCache

  • AppData\Local\Microsoft\WebSiteCache
Brad Tutterow
This may sound stupid, but where do I find the AppData\...?
Daniel Daranas
Your tips are not about R# but VS...
Maciej
+4  A: 

Visual Studio optimisations: http://stackoverflow.com/questions/8440/visual-studio-optimizations#8453

Christian Hagelid
Fixed link: http://stackoverflow.com/questions/8440/visual-studio-optimizations
Iain
+1  A: 

Having too many projects within your solution also appears to be a factor when it comes to performance. I have no real evidence of this but from my experience, less projects equates to better performance.

If consolidating projects is not an option then create an alternate solution file so you can add only the existing projects that are relevant to the work you are doing.

berko
This also cuts down on the benefits of refactoring though. If your product is all built within a single location, having a single solution allows you to make massive refactorings very easy. Instead opening each one and making the required changes is a royal PITA.
Andrew