Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A bunch of classes doesn't comply to our naming conventions for private variables. Resharper shows this as a warning, but wants me to fix all of them by hand. Is there some magic option to auto-fix these issues?

'Clean-up code' won't do anything with this. Same goes for converting properties with backing fields to automatic properties when possible: the hint is shown, but Resharper won't fix it automatically.

share|improve this question

1 Answer

up vote 7 down vote accepted

No, resharper will not silently perform an action that alters the behavior of code, only style/aesthetics.

You must actively make functional changes to code.

put your cursor at the top of the file, hold down ALT and alternate between PAGE DOWN to get to the next style issue and ENTER to bring up the smart tag to make the change.

use SHFT-ALT PAGE DOWN to cycle through errors.

share|improve this answer
2  
It's disappointing there isn't an option for this. – nicodemus13 Nov 10 '11 at 18:06
In fact if it would authomatically correct all the behaviors for you, it wouldn't manage well the exceptions. Resharper gives you the chance to verify that every change is correct and it is very fast to do this verification. Some authomatic changes can be done through Cleanup, then you can do what Sky Sanders tells you in order to do the rest. Fast and easy. – JPMarichal Nov 22 '11 at 17:44
In version 6.1, the default KB shortcut for next issue is F12 (and ALT-F12 for next error in solution). I found this annoying, so changed it to ALT-PD as suggested here. To do this, go to VS Options -> Keyboard. In the awful interface, filter for ReSharper.Resharper_GotoNextHighlight (and Resharper.Resharper_GotoPrevHighlight). Change keys accordingly. Might also do Resharper.Resharper_GotoNextErrorInSolution and Resharper.Resharper_GotoPrevErrorInSolution – Griffin Aug 8 '12 at 19:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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