5 references to IsWarningAsError
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (1)
1506
errors = diagnostics.ToReadOnlyAndFree().SelectAsArray(diag => new DiagnosticInfo(messageProvider, diag.
IsWarningAsError
, diag.Code, (object[])diag.Arguments));
Diagnostic\Diagnostic.cs (1)
328
/// To determine if this is a warning treated as an error, use <see cref="
IsWarningAsError
"/>.
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
Diagnostics\DiagnosticAnalyzerTests.cs (1)
407
Assert.Equal(1, effectiveDiags.Count(d => d.
IsWarningAsError
));
Microsoft.CodeAnalysis.Test.Utilities (1)
Diagnostics\DiagnosticDescription.cs (1)
125
_isWarningAsError = d.
IsWarningAsError
;
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Diagnostics\DiagnosticAnalyzerTests.vb (1)
151
Assert.Equal(1, effectiveDiags.Count(Function(d) d.
IsWarningAsError
))