Question

I am using Resharper 7.1 only because one function "Clean Code..." with StyleCop settings.

I dont need other things like intellisense or new menus (which actually working extremely slowly).

Is it possible to use some external tool to clean code and disable Resharper in visual studio? Is it possible to confugure Resharper to disable all his "cool" addons and menus like custom "Rename" and use VisualStudio defaults? Any other tool that can reformat code with style cop settings without such impact on performance?

Was it helpful?

Solution

You cannot completely turn off all of the ReSharper features, but if you go to ReSharper | Options you can turn off following things:

  1. Environment -> Editor. You can turn off all of the checkboxes. They are responsible for typing assists and can cause typing delays on very slow computers.

  2. Environment -> Intellisense -> General. You can select 'Visual Studio' to turn off advanced intellisense features from ReSharper.

  3. Code Inspection -> Settings. You can turn off 'Enable code analysis'. It is responsible for finding errors in your code and offering quick fixes for them.

  4. Code Editing -> Context Actions and Code Editing -> C# -> Context Actions. You can turn off all of the checkboxes. They are responsible for giving you some of the code editing helpers by Alt-Enter.

  5. Tools -> Unit testing. You can turn off "Enable unit testing" checkbox if you don't use ReSharper unit test runner.

  6. Maybe you should also delete all of the Todo items patterns from Tools -> To-do items.

But the best thing you can do is to ask your boss to buy you a good development workstation with enough memory and SDD - that would be useful even without ReSharper, because your time is many times more expensive. And learn to use advanced ReSharper features. They are really worth it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top