5 overrides of FormatFileAsync
dotnet-format (5)
Formatters\CharsetFormatter.cs (1)
21internal override Task<SourceText> FormatFileAsync(
Formatters\EndOfLineFormatter.cs (1)
18internal override Task<SourceText> FormatFileAsync(
Formatters\FinalNewlineFormatter.cs (1)
17internal override async Task<SourceText> FormatFileAsync(
Formatters\OrganizeImportsFormatter.cs (1)
22internal override async Task<SourceText> FormatFileAsync(
Formatters\WhitespaceFormatter.cs (1)
21internal override async Task<SourceText> FormatFileAsync(
2 references to FormatFileAsync
dotnet-format (2)
Formatters\DocumentFormatter.cs (1)
110var formattedSourceText = await FormatFileAsync(document, originalSourceText, optionSet, analyzerConfigOptions, formatOptions, logger, cancellationToken).ConfigureAwait(false);
Formatters\OrganizeImportsFormatter.cs (1)
51return await _endOfLineFormatter.FormatFileAsync(organizedDocument, organizedSourceText, optionSet, analyzerConfigOptions, formatOptions, logger, cancellationToken).ConfigureAwait(false);