RefactoringEssentials icon indicating copy to clipboard operation
RefactoringEssentials copied to clipboard

Refactoring Essentials for Visual Studio

Results 100 RefactoringEssentials issues
Sort by recently updated
recently updated
newest added

Are there any plans to add VS 2017 RC support? VS2015 will likely not get support for the new .NET Core tooling that ships with VS 2017, so .NET Core...

How can I entirely remove a suggestion in Messages? Specifically the `Use 'var' keyword` suggestion. I don't want to supress it for specific solution, but globally for all solution.

Using RE 4.2.0.0 with VS2015 Update 3, it seems that the `ConvertInterpolatedStringToStringFormatCodeRefactoringProvider` and `ConvertStringFormatToInterpolatedStringCodeRefactoringProvider` no longer trigger. Is this a known issue or perhaps just my install?

ReSharper supports [this](https://blog.jetbrains.com/dotnet/2015/04/15/c-6-0-support-in-resharper-9-1/) very useful refactoring: ```C# if (a != null && a.b != null) { } ``` to ```C# if (a ?.b != null) { } ``` In Resharper...

C# supports both ```C# void Foo() { Bar(); } ``` and ```C# void Foo() => Bar(); ``` The extension does not support refactoring the block into the expression-bodied member, when...

up-for-grabs
feature request

I love the refactoring capabilities of this extension but I'm using StyleCopAnalyzers with a custom style guideline so I'd like to disable all the style-related recommendations of Refactoring Essentials.

My VS reported a crash in ConvertInstanceToStaticMethodCodeRefactoringProvider and I wanted to debug it, but the folder where the extension is installed did not contain RefactoringEssentials.pdb (it does contain a RefactoringEssentials.VsExtension.pdb,...

enhancement

Reported through Visual Studio Gallery by user [jrpally](https://visualstudiogallery.msdn.microsoft.com/site/search?f%5B0%5D.Type=User&f%5B0%5D.Value=jrpally): > _I got the following error: Severity Code Description Project File Line Suppression State > Warning AD1000 An instance of analyzer RefactoringEssentials.CSharp.Diagnostics.AccessToStaticMemberViaDerivedTypeAnalyzer...