1 implementation of IHostDependentFormattingRuleFactoryService
Microsoft.CodeAnalysis.Workspaces (1)
Formatting\Rules\DefaultFormattingRuleFactoryServiceFactory.cs (1)
14internal sealed class DefaultFormattingRuleFactoryService : IHostDependentFormattingRuleFactoryService
7 references to IHostDependentFormattingRuleFactoryService
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\CSharp\Formatting\CSharpSyntaxFormattingService.cs (2)
325var formattingRuleFactory = _services.SolutionServices.GetRequiredService<IHostDependentFormattingRuleFactoryService>();
Microsoft.CodeAnalysis.Features (2)
Formatting\FormattingRuleUtilities.cs (2)
16var formattingRuleFactory = document.SolutionServices.GetRequiredService<IHostDependentFormattingRuleFactoryService>();
Microsoft.CodeAnalysis.Workspaces (3)
Formatting\Rules\DefaultFormattingRuleFactoryServiceFactory.cs (1)
13[ExportWorkspaceService(typeof(IHostDependentFormattingRuleFactoryService), ServiceLayer.Default), Shared]
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\AbstractIndentationService.cs (2)
48var formattingRuleFactory = document.SolutionServices.GetRequiredService<IHostDependentFormattingRuleFactoryService>();