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)
93new SolutionOptionSet(_legacyOptions), 129var options = new SolutionOptionSet(_legacyOptions); 588oldSolution => oldSolution.WithOptions(new SolutionOptionSet(_legacyOptions)),
14 references to SolutionOptionSet
Microsoft.CodeAnalysis.Workspaces (14)
Options\ILegacyWorkspaceOptionService.cs (1)
12/// Only used by <see cref="Workspace"/> and <see cref="SolutionOptionSet"/> to implement legacy public APIs:
Options\LegacyWorkspaceOptionService.cs (1)
47/// Clears <see cref="SolutionOptionSet"/> of registered workspaces so that next time
Workspace\Solution\Solution.cs (3)
61SolutionOptionSet options, 1729SolutionOptionSet serializableOptions => WithOptions(serializableOptions), 1738internal Solution WithOptions(SolutionOptionSet options)
Workspace\Solution\SolutionCompilationState.cs (1)
1491public SolutionCompilationState WithOptions(SolutionOptionSet options)
Workspace\Solution\SolutionState.cs (5)
44public SolutionOptionSet Options { get; } 72SolutionOptionSet options, 109SolutionOptionSet options, 180SolutionOptionSet? options = null, 1225public SolutionState WithOptions(SolutionOptionSet options)
Workspace\Workspace.cs (3)
129var options = new SolutionOptionSet(_legacyOptions); 136private Solution CreateSolution(SolutionInfo solutionInfo, SolutionOptionSet options, IReadOnlyList<AnalyzerReference> analyzerReferences, ImmutableDictionary<string, StructuredAnalyzerConfigOptions> fallbackAnalyzerOptions) 577SolutionOptionSet solutionOptionSet => solutionOptionSet.GetChangedOptions(),