Files
codeql/csharp/ql/src/Stubs/AllStubsFromReference.ql
2021-06-23 09:26:54 +02:00

16 lines
395 B
Plaintext

/**
* Tool to generate C# stubs from a qltest snapshot.
*/
import csharp
import Stubs
/** All public declarations from assemblies. */
class AllExternalPublicDeclarations extends GeneratedDeclaration {
AllExternalPublicDeclarations() { this.fromLibrary() }
}
from Assembly a
select a.getFullName(), a.getName(), a.getVersion().toString(), a.getFile().getAbsolutePath(),
generatedCode(a)