3 references to IsWarningAsError
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
CompilationFailedExceptionFactory.cs (1)
54
.Where(diagnostic => diagnostic.
IsWarningAsError
|| diagnostic.Severity == DiagnosticSeverity.Error)
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (1)
1662
errors = diagnostics.ToReadOnlyAndFree().SelectAsArray(diag => new DiagnosticInfo(messageProvider, diag.
IsWarningAsError
, diag.Code, (object[])diag.Arguments));
Diagnostic\Diagnostic.cs (1)
329
/// To determine if this is a warning treated as an error, use <see cref="
IsWarningAsError
"/>.