WellKnownFixAllProviders.BatchFixer Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Default batch fix all provider. This provider batches all the individual diagnostic fixes across the scope of fix all action, computes fixes in parallel and then merges all the non-conflicting fixes into a single fix all code action. This fixer supports fixes for the following fix all scopes: Document, Project, SolutionContainingMember and ContainingType.
public:
static property Microsoft::CodeAnalysis::CodeFixes::FixAllProvider ^ BatchFixer { Microsoft::CodeAnalysis::CodeFixes::FixAllProvider ^ get(); };
public static Microsoft.CodeAnalysis.CodeFixes.FixAllProvider BatchFixer { get; }
static member BatchFixer : Microsoft.CodeAnalysis.CodeFixes.FixAllProvider
Public Shared ReadOnly Property BatchFixer As FixAllProvider
Property Value
Remarks
The batch fix all provider only batches operations (i.e. CodeActionOperation) of type ApplyChangesOperation present within the individual diagnostic fixes. Other types of operations present within these fixes are ignored.
Applies to
.NET