5 references to IsWarningAsError
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (1)
1506errors = 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)
407Assert.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)
151Assert.Equal(1, effectiveDiags.Count(Function(d) d.IsWarningAsError))