mirror of
https://github.com/github/codeql.git
synced 2026-05-24 16:17:07 +02:00
16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
/**
|
|
* @name Extracted files
|
|
* @description A list of all files in the source code directory that were extracted
|
|
* without encountering an extraction or compiler error in the file.
|
|
* @kind diagnostic
|
|
* @id cs/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.commons.Diagnostics
|
|
|
|
from File file
|
|
where file.fromSource()
|
|
select file, ""
|