When using Resharper, for some reason, when I call an extension method, it automatically converts it into a static method call. This is the so called Convert Extension Method to Plain Static refactoring.
foo.Bar()
becomes
MyStaticExtensions.Bar(foo);
Ironically, it then flags this as a code smell. How do I turn this off?