mirror of
https://github.com/github/codeql.git
synced 2026-03-01 05:13:41 +01:00
17 lines
444 B
Plaintext
17 lines
444 B
Plaintext
/**
|
|
* @name Compilation message
|
|
* @description A message emitted by the compiler, including warnings and errors.
|
|
* @kind problem
|
|
* @problem.severity recommendation
|
|
* @precision medium
|
|
* @id cs/compilation-message
|
|
* @tags internal
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.commons.Diagnostics
|
|
|
|
from Diagnostic diagnostic
|
|
select diagnostic,
|
|
diagnostic.getSeverityText() + " " + diagnostic.getTag() + " " + diagnostic.getFullMessage()
|