12 references to FallbackAnalyzerOptions
Microsoft.CodeAnalysis.ExternalAccess.OmniSharp (1)
Options\OmniSharpSolutionAnalyzerConfigOptionsUpdater.cs (1)
24var oldFallbackOptions = oldSolution.FallbackAnalyzerOptions;
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\DecompilationMetadataAsSourceFileProvider.cs (1)
66metadataWorkspace.OnSolutionFallbackAnalyzerOptionsChanged(sourceWorkspace.CurrentSolution.FallbackAnalyzerOptions);
Microsoft.CodeAnalysis.Workspaces (10)
Workspace\Solution\Project.cs (1)
832=> Solution.FallbackAnalyzerOptions.GetValueOrDefault(Language, StructuredAnalyzerConfigOptions.Empty);
Workspace\Solution\Solution.cs (5)
517/// Create a new solution instance updated to use the specified <see cref="FallbackAnalyzerOptions"/>. 523/// Forks this solution to ensure that its <see cref="FallbackAnalyzerOptions"/> are updated with the latest values 527/// removed from <see cref="FallbackAnalyzerOptions"/>. Similarly, if there are new languages in this solution not 529/// cref="FallbackAnalyzerOptions"/>. 533var newFallbackOptions = this.FallbackAnalyzerOptions;
Workspace\Workspace.cs (4)
1014/// Call this method when <see cref="Solution.FallbackAnalyzerOptions"/> change in the host environment. 1593if (CurrentSolution.FallbackAnalyzerOptions != newSolution.FallbackAnalyzerOptions) 1595OnSolutionFallbackAnalyzerOptionsChanged(newSolution.FallbackAnalyzerOptions);