1 instantiation of BatchFixAllProvider
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixes\FixAllOccurrences\BatchFixAllProvider.cs (1)
24public static readonly FixAllProvider Instance = new BatchFixAllProvider();
3 references to BatchFixAllProvider
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Formatting\CodeCleanupTests.TestFixers.cs (1)
59public override FixAllProvider GetFixAllProvider() => BatchFixAllProvider.Instance;
Microsoft.CodeAnalysis.Workspaces (2)
CodeFixes\FixAllOccurrences\WellKnownFixAllProviders.cs (1)
27public static FixAllProvider BatchFixer => BatchFixAllProvider.Instance;
CodeFixesAndRefactorings\DefaultFixAllProviderHelpers.cs (1)
19/// entire solutions. Used by <see cref="BatchFixAllProvider"/> and <see cref="DocumentBasedFixAllProvider"/>.