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