4 references to GetCodeCleanupOptionsAsync
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
Formatting\OmniSharpSyntaxFormattingOptionsWrapper.cs (1)
41
var cleanupOptions = await document.
GetCodeCleanupOptionsAsync
(fallbackOptions, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Features\Options\CodeCleanupOptionsStorage.cs (1)
15
=> document.
GetCodeCleanupOptionsAsync
(globalOptions.GetCodeCleanupOptions(document.Project.Services), cancellationToken);
Microsoft.CodeAnalysis.Workspaces (2)
CleanCodeGenerationOptions.cs (1)
80
CleanupOptions = await document.
GetCodeCleanupOptionsAsync
(fallbackOptions.CleanupOptions, cancellationToken).ConfigureAwait(false)
CodeCleanupOptions.cs (1)
103
=> await document.
GetCodeCleanupOptionsAsync
(await ((OptionsProvider<CodeCleanupOptions>)fallbackOptionsProvider).GetOptionsAsync(document.Project.Services, cancellationToken).ConfigureAwait(false), cancellationToken).ConfigureAwait(false);