5 references to ReportSuppressedDiagnostics
Microsoft.CodeAnalysis (1)
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (1)
99
.WithOptions(compilation.Options.WithReportSuppressedDiagnostics(analysisOptions.
ReportSuppressedDiagnostics
))
Microsoft.CodeAnalysis.Workspaces (4)
Diagnostics\CompilationWithAnalyzersPair.cs (4)
26
Contract.ThrowIfFalse(projectCompilationWithAnalyzers.AnalysisOptions.
ReportSuppressedDiagnostics
== hostCompilationWithAnalyzers.AnalysisOptions.
ReportSuppressedDiagnostics
);
46
public bool ReportSuppressedDiagnostics => _projectCompilationWithAnalyzers?.AnalysisOptions.
ReportSuppressedDiagnostics
?? _hostCompilationWithAnalyzers!.AnalysisOptions.
ReportSuppressedDiagnostics
;