Skip to content

Commit 1585ce2

Browse files
committed
Fix that SettingsCodeFixProvider is considered a 'normal' codefix
1 parent b62f047 commit 1585ce2

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

StyleCop.Analyzers.Status.Generator/SolutionReader.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ private void InitializeCodeFixTypes()
8686
.Select(t => Activator.CreateInstance(t, true))
8787
.OfType<CodeFixProvider>()
8888
.Where(x => x != null)
89+
.Where(x => x.GetType().Name != "SettingsFileCodeFixProvider")
8990
.ToArray());
9091
}
9192

0 commit comments

Comments
 (0)