5 instantiations of SolutionOptionSet
Microsoft.CodeAnalysis.Workspaces (5)
Options\SolutionOptionSet.cs (2)
70return new SolutionOptionSet(_legacyGlobalOptions, _values, _changedOptionKeys); 73return new SolutionOptionSet(
Workspace\Workspace.cs (3)
92new SolutionOptionSet(_legacyOptions), 128var options = new SolutionOptionSet(_legacyOptions); 584oldSolution => oldSolution.WithOptions(new SolutionOptionSet(_legacyOptions)),
13 references to SolutionOptionSet
Microsoft.CodeAnalysis.Workspaces (13)
Options\ILegacyWorkspaceOptionService.cs (1)
12/// Only used by <see cref="Workspace"/> and <see cref="SolutionOptionSet"/> to implement legacy public APIs:
Workspace\Solution\Solution.cs (3)
61SolutionOptionSet options, 1720SolutionOptionSet serializableOptions => WithOptions(serializableOptions), 1729internal Solution WithOptions(SolutionOptionSet options)
Workspace\Solution\SolutionCompilationState.cs (1)
1491public SolutionCompilationState WithOptions(SolutionOptionSet options)
Workspace\Solution\SolutionState.cs (5)
43public SolutionOptionSet Options { get; } 71SolutionOptionSet options, 108SolutionOptionSet options, 179SolutionOptionSet? options = null, 1215public SolutionState WithOptions(SolutionOptionSet options)
Workspace\Workspace.cs (3)
128var options = new SolutionOptionSet(_legacyOptions); 135private Solution CreateSolution(SolutionInfo solutionInfo, SolutionOptionSet options, IReadOnlyList<AnalyzerReference> analyzerReferences, ImmutableDictionary<string, StructuredAnalyzerConfigOptions> fallbackAnalyzerOptions) 573SolutionOptionSet solutionOptionSet => solutionOptionSet.GetChangedOptions(),