1 implementation of IIndentationService
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\AbstractIndentationService.cs (1)
13
: AbstractIndentation<TSyntaxRoot>,
IIndentationService
5 references to IIndentationService
Microsoft.CodeAnalysis.CodeStyle.Fixes (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\IIndentationService.cs (2)
57
var
indenter = document.LanguageServices.GetRequiredService<
IIndentationService
>();
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (3)
src\Analyzers\CSharp\CodeFixes\ConvertNamespace\ConvertNamespaceTransform.cs (2)
102
var
indentationService = document.LanguageServices.GetRequiredService<
IIndentationService
>();
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Indentation\CSharpIndentationService.cs (1)
23
[ExportLanguageService(typeof(
IIndentationService
), LanguageNames.CSharp), Shared]