views:

16

answers:

1

Is there any way, when doing e.g. a rename class refactoring with ReSharper, I can exclude certain files or projects in the solution from being searched?

I have one project in my solution that ReSharper takes forever to search through whenever I run a rename class, and I know that in 99% of the time, the refactoring does not affect this project.

A: 

You could always make a second solution that doesn't include that project. Build the full solution on your continuous integration server, but open the smaller one when you're developing.

Joe White