mirror of
https://github.com/github/codeql.git
synced 2026-02-11 04:31:05 +01:00
15 lines
429 B
Plaintext
15 lines
429 B
Plaintext
/**
|
|
* @name Compilation error
|
|
* @description A compilation error can cause extraction problems, and could lead to inaccurate results.
|
|
* @kind diagnostic
|
|
* @id cs/compilation-error
|
|
* @tags internal non-attributable
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.commons.Diagnostics
|
|
|
|
from CompilerError diagnostic
|
|
select diagnostic,
|
|
diagnostic.getSeverityText() + " " + diagnostic.getTag() + " " + diagnostic.getFullMessage()
|