Skip to content

Commit 51f4f57

Browse files
committed
C#: Use cs/ prefix in all query IDs
1 parent e6145f0 commit 51f4f57

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

csharp/ql/lib/semmle/code/csharp/PrintAst.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Print AST
33
* @description Outputs a representation of the Abstract Syntax Tree.
4-
* @id csharp/print-ast
4+
* @id cs/print-ast
55
* @kind graph
66
*/
77

csharp/ql/src/Security Features/CWE-020/ExternalAPIsUsedWithUntrustedData.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @description This reports the external APIs that are used with untrusted data, along with how
44
* frequently the API is called, and how many unique sources of untrusted data flow
55
* to it.
6-
* @id csharp/count-untrusted-data-external-api
6+
* @id cs/count-untrusted-data-external-api
77
* @kind table
88
* @tags security external/cwe/cwe-20
99
*/

csharp/ql/src/Security Features/CWE-020/UntrustedDataToExternalAPI.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Untrusted data passed to external API
33
* @description Data provided remotely is used in this external API without sanitization, which could be a security risk.
4-
* @id csharp/untrusted-data-to-external-api
4+
* @id cs/untrusted-data-to-external-api
55
* @kind path-problem
66
* @precision low
77
* @problem.severity error

csharp/ql/src/experimental/ir/IRConsistency.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name IR Consistency Check
33
* @description Performs consistency checks on the Intermediate Representation. This query should have no results.
44
* @kind table
5-
* @id csharp/ir-consistency-check
5+
* @id cs/ir-consistency-check
66
*/
77

88
import implementation.raw.IRConsistency

csharp/ql/src/experimental/ir/PrintIR.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Print IR
33
* @description Outputs a representation of the IR graph
4-
* @id csharp/print-ir
4+
* @id cs/print-ir
55
* @kind graph
66
*/
77

csharp/ql/src/experimental/ir/implementation/raw/IRConsistency.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name Raw IR Consistency Check
33
* @description Performs consistency checks on the Intermediate Representation. This query should have no results.
44
* @kind table
5-
* @id csharp/raw-ir-consistency-check
5+
* @id cs/raw-ir-consistency-check
66
*/
77

88
import IRConsistency

csharp/ql/src/experimental/ir/implementation/raw/PrintIR.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @name Print Raw IR
33
* @description Outputs a representation of the Raw IR graph
4-
* @id csharp/print-raw-ir
4+
* @id cs/print-raw-ir
55
* @kind graph
66
*/
77

csharp/ql/src/experimental/ir/implementation/unaliased_ssa/internal/SSAConsistency.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name Unaliased SSA Consistency Check
33
* @description Performs consistency checks on the SSA construction. This query should have no results.
44
* @kind table
5-
* @id csharp/unaliased-ssa-consistency-check
5+
* @id cs/unaliased-ssa-consistency-check
66
*/
77

88
import SSAConsistency

csharp/ql/src/printAst.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @name Print AST
33
* @description Outputs a representation of a file's Abstract Syntax Tree. This
44
* query is used by the VS Code extension.
5-
* @id csharp/print-ast
5+
* @id cs/print-ast
66
* @kind graph
77
* @tags ide-contextual-queries/print-ast
88
*/

0 commit comments

Comments
 (0)