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