1 write to _options
AnalyzerRunner (1)
DiagnosticAnalyzerRunner.cs (1)
31_options = options;
7 references to _options
AnalyzerRunner (7)
DiagnosticAnalyzerRunner.cs (7)
68await GetAnalysisResultAsync(solution, _analyzers, _options, cancellationToken).ConfigureAwait(false); 85var analysisResult = await GetAnalysisResultAsync(solution, _analyzers, _options, cancellationToken).ConfigureAwait(false); 91if (_options.TestDocuments) 115if (!_options.TestDocumentMatch(document.FilePath)) 120var currentDocumentPerformance = await TestDocumentPerformanceAsync(_analyzers, project, documentId, _options, cancellationToken).ConfigureAwait(false); 171if (!string.IsNullOrWhiteSpace(_options.LogFileName)) 173WriteDiagnosticResults(analysisResult.SelectMany(pair => pair.Value.GetAllDiagnostics().Select(j => Tuple.Create(pair.Key, j))).ToImmutableArray(), _options.LogFileName);