2 instantiations of AnalyzerConfigOptionsCache
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\Solution\ProjectState.cs (2)
487return new AnalyzerConfigOptionsCache(AnalyzerConfigSet.Create(analyzerConfigs)); 492return new AnalyzerConfigOptionsCache(AnalyzerConfigSet.Create(analyzerConfigs));
13 references to AnalyzerConfigOptionsCache
Microsoft.CodeAnalysis.Workspaces (13)
Workspace\Solution\ProjectState.cs (13)
59private readonly ValueSource<AnalyzerConfigOptionsCache> _lazyAnalyzerConfigOptions; 76ValueSource<AnalyzerConfigOptionsCache> lazyAnalyzerConfigSet) 254var cache = await _lazyAnalyzerConfigOptions.GetValueAsync(cancellationToken).ConfigureAwait(false); 302private AnalyzerConfigOptionsCache GetCache() 311var cache = GetCache(); 322var cache = await _projectState._lazyAnalyzerConfigOptions.GetValueAsync(cancellationToken).ConfigureAwait(false); 326private StructuredAnalyzerConfigOptions GetOptions(in AnalyzerConfigOptionsCache cache, DocumentState documentState) 356private static StructuredAnalyzerConfigOptions GetOptionsForSourcePath(in AnalyzerConfigOptionsCache cache, string path) 442private readonly ValueSource<AnalyzerConfigOptionsCache> _lazyAnalyzerConfigSet; 444public ProjectSyntaxTreeOptionsProvider(ValueSource<AnalyzerConfigOptionsCache> lazyAnalyzerConfigSet) 477private static ValueSource<AnalyzerConfigOptionsCache> ComputeAnalyzerConfigOptionsValueSource(TextDocumentStates<AnalyzerConfigDocumentState> analyzerConfigDocumentStates) 479return new AsyncLazy<AnalyzerConfigOptionsCache>( 608ValueSource<AnalyzerConfigOptionsCache>? analyzerConfigSet = null)