Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a00c2cc commit 5305429Copy full SHA for 5305429
1 file changed
csharp/ql/src/Stubs/AllStubsFromReference.ql
@@ -12,9 +12,7 @@ class AllExternalPublicDeclarations extends GeneratedDeclaration {
12
13
/** All framework assemblies. */
14
class NonTargetAssembly extends ExcludedAssembly {
15
- NonTargetAssembly() {
16
- exists(this.getFile().getAbsolutePath().indexOf("Microsoft.NETCore.App.Ref"))
17
- }
+ NonTargetAssembly() { this.getFile().getAbsolutePath().matches("%Microsoft.NETCore.App.Ref%") }
18
}
19
20
from Assembly a
0 commit comments