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