10 references to IWorkspaceConfigurationService
Microsoft.CodeAnalysis.Workspaces (10)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
89var configuration = solution.Services.GetRequiredService<IWorkspaceConfigurationService>().Options;
Workspace\IsolatedAnalyzerReferenceSet.Core.cs (4)
204var optionsService = solutionServices.GetRequiredService<IWorkspaceConfigurationService>(); 230var optionsService = solutionServices.GetRequiredService<IWorkspaceConfigurationService>();
Workspace\IWorkspaceConfigurationService.cs (2)
17[ExportWorkspaceService(typeof(IWorkspaceConfigurationService)), Shared] 20internal sealed class DefaultWorkspaceConfigurationService() : IWorkspaceConfigurationService
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker.cs (2)
70_validateStates = project.LanguageServices.SolutionServices.GetRequiredService<IWorkspaceConfigurationService>().Options.ValidateCompilationTrackerStates; 607var workspacePreference = compilationState.Services.GetRequiredService<IWorkspaceConfigurationService>().Options.SourceGeneratorExecution;
Workspace\Workspace_SourceGeneration.cs (1)
36var configuration = this.Services.GetRequiredService<IWorkspaceConfigurationService>().Options;