1 implementation of ILegacyGlobalOptionService
Microsoft.CodeAnalysis.Workspaces (1)
Options\LegacyWorkspaceOptionService.cs (1)
19internal sealed class LegacyGlobalOptionService(IGlobalOptionService globalOptionService) : ILegacyGlobalOptionService
9 references to ILegacyGlobalOptionService
Microsoft.CodeAnalysis.Workspaces (8)
Options\ILegacyWorkspaceOptionService.cs (1)
17ILegacyGlobalOptionService LegacyGlobalOptions { get; }
Options\LegacyWorkspaceOptionService.cs (3)
16[Export(typeof(ILegacyGlobalOptionService)), Shared] 24internal sealed class WorkspaceService(ILegacyGlobalOptionService legacyGlobalOptions) : ILegacyWorkspaceOptionService 26public ILegacyGlobalOptionService LegacyGlobalOptions { get; } = legacyGlobalOptions;
Options\SolutionOptionSet.cs (3)
19private readonly ILegacyGlobalOptionService _legacyGlobalOptions; 32ILegacyGlobalOptionService globalOptions, 41internal SolutionOptionSet(ILegacyGlobalOptionService globalOptions)
Workspace\Workspace.cs (1)
39private readonly ILegacyGlobalOptionService _legacyOptions;
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\SolutionTests.cs (1)
5445var optionService = workspace.Services.GetRequiredService<ILegacyWorkspaceOptionService>().LegacyGlobalOptions;