31 references to WellKnownFixAllProviders
Microsoft.CodeAnalysis.CodeStyle.Fixes (5)
AbstractAddDocCommentNodesCodeFixProvider.cs (1)
28=> WellKnownFixAllProviders.BatchFixer;
AbstractMakeMethodAsynchronousCodeFixProvider.cs (1)
31public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractMakeMethodSynchronousCodeFixProvider.cs (1)
27public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractRemoveDocCommentNodeCodeFixProvider.cs (1)
22public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractRemoveUnnecessaryImportsCodeFixProvider.cs (1)
25=> WellKnownFixAllProviders.BatchFixer;
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (4)
HideBaseCodeFixProvider.cs (1)
31=> WellKnownFixAllProviders.BatchFixer;
MisplacedUsingDirectivesCodeFixProvider.cs (1)
54return WellKnownFixAllProviders.BatchFixer;
RemoveInKeywordCodeFixProvider.cs (1)
34=> WellKnownFixAllProviders.BatchFixer;
RemoveNewModifierCodeFixProvider.cs (1)
32=> WellKnownFixAllProviders.BatchFixer;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Diagnostics\FixAllProvider\BatchFixerTests.cs (1)
96=> WellKnownFixAllProviders.BatchFixer;
Microsoft.CodeAnalysis.CSharp.Features (5)
HideBaseCodeFixProvider.cs (1)
31=> WellKnownFixAllProviders.BatchFixer;
ImplementInterface\CSharpImplementInterfaceCodeFixProvider.cs (1)
68=> WellKnownFixAllProviders.BatchFixer;
MisplacedUsingDirectivesCodeFixProvider.cs (1)
54return WellKnownFixAllProviders.BatchFixer;
RemoveInKeywordCodeFixProvider.cs (1)
34=> WellKnownFixAllProviders.BatchFixer;
RemoveNewModifierCodeFixProvider.cs (1)
32=> WellKnownFixAllProviders.BatchFixer;
Microsoft.CodeAnalysis.Features (7)
AbstractAddDocCommentNodesCodeFixProvider.cs (1)
28=> WellKnownFixAllProviders.BatchFixer;
AbstractMakeMethodAsynchronousCodeFixProvider.cs (1)
31public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractMakeMethodSynchronousCodeFixProvider.cs (1)
27public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractRemoveDocCommentNodeCodeFixProvider.cs (1)
22public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
AbstractRemoveUnnecessaryImportsCodeFixProvider.cs (1)
25=> WellKnownFixAllProviders.BatchFixer;
ImplementAbstractClass\AbstractImplementAbstractClassCodeFixProvider.cs (1)
19=> WellKnownFixAllProviders.BatchFixer;
UseAutoProperty\AbstractUseAutoPropertyCodeFixProvider.cs (1)
39public sealed override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;
Microsoft.CodeAnalysis.VisualBasic.Features (2)
CodeFixes\OverloadBase\OverloadBaseCodeFixProvider.vb (1)
33Return WellKnownFixAllProviders.BatchFixer
ImplementInterface\VisualBasicImplementInterfaceCodeFixProvider.vb (1)
35Return WellKnownFixAllProviders.BatchFixer
Microsoft.CodeAnalysis.Workspaces (6)
CodeFixes\CodeFixProvider.cs (1)
35/// Otherwise, you can return any of the well known fix all providers from <see cref="WellKnownFixAllProviders"/> or implement your own fix all provider.
CodeFixes\FixAllOccurrences\DocumentBasedFixAllProvider.cs (1)
21/// should be used instead of <see cref="WellKnownFixAllProviders.BatchFixer"/> in the case where fixes for a <see
CodeFixes\FixAllOccurrences\FixAllProvider.cs (3)
17/// Alternatively, you can use any of the well known fix all providers from <see cref="WellKnownFixAllProviders"/>. 49/// <see cref="WellKnownFixAllProviders.BatchFixer"/> in the case where fixes for a <see cref="Diagnostic"/> 63/// This should be used instead of <see cref="WellKnownFixAllProviders.BatchFixer"/> in the case where
CodeFixes\Supression\IConfigurationFixProvider.cs (1)
40/// Otherwise, you can return any of the well known fix all providers from <see cref="WellKnownFixAllProviders"/> or implement your own fix all provider.
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
BatchFixAllProviderTests.cs (1)
93public override FixAllProvider GetFixAllProvider() => WellKnownFixAllProviders.BatchFixer;