Files
codeql/csharp/ql/lib/semmle/code/csharp/frameworks/Microsoft.qll
Andrew Eisenberg c9f1c98390 Packaging: C# refactoring
Split c# pack into `codeql/csharp-all` and `codeql/csharp-queries`.
2021-08-19 14:09:35 -07:00

12 lines
283 B
Plaintext

/** Provides definitions related to the namespace `Microsoft`. */
import csharp
/** The `Microsoft` namespace. */
class MicrosoftNamespace extends Namespace {
MicrosoftNamespace() {
this.getParentNamespace() instanceof GlobalNamespace and
this.hasName("Microsoft")
}
}