14 references to FallbackAnalyzerOptions
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Features\Options\ClientFallbackAnalyzerConfigOptionsProvider.cs (1)
15
/// Flows editorconfig options stored by <see cref="IGlobalOptionService"/> to <see cref="Solution.
FallbackAnalyzerOptions
"/> whenever a new language is added to one of the target workspaces.
Features\Options\SolutionAnalyzerConfigOptionsUpdater.cs (1)
23
/// Keeps <see cref="Solution.
FallbackAnalyzerOptions
"/> up-to-date with global option values maintained by <see cref="IGlobalOptionService"/>.
Microsoft.CodeAnalysis.Workspaces (9)
Workspace\Solution\Project.cs (1)
828
=> Solution.
FallbackAnalyzerOptions
.GetValueOrDefault(Language, StructuredAnalyzerConfigOptions.Empty);
Workspace\Solution\Solution.cs (1)
507
/// Create a new solution instance updated to use the specified <see cref="
FallbackAnalyzerOptions
"/>.
Workspace\Workspace.cs (7)
405
/// allow the host to initialize <see cref="Solution.
FallbackAnalyzerOptions
"/> for that language.
407
/// we clear out its <see cref="Solution.
FallbackAnalyzerOptions
"/>.
414
/// the host had the opportunity to initialize <see cref="Solution.
FallbackAnalyzerOptions
"/>
419
var newFallbackOptions = newSolution.
FallbackAnalyzerOptions
;
1018
/// Call this method when <see cref="Solution.
FallbackAnalyzerOptions
"/> change in the host environment.
1599
if (CurrentSolution.FallbackAnalyzerOptions != newSolution.
FallbackAnalyzerOptions
)
1601
OnSolutionFallbackAnalyzerOptionsChanged(newSolution.
FallbackAnalyzerOptions
);
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (3)
Workspaces\TestWorkspace`1.cs (3)
113
/// Use to set specified editorconfig options as <see cref="Solution.
FallbackAnalyzerOptions
"/>.
126
/// Use to set specified editorconfig options as <see cref="Solution.
FallbackAnalyzerOptions
"/>.
141
/// Use to set specified options both as global options and as <see cref="Solution.
FallbackAnalyzerOptions
"/>.