Skip to content

Commit 5020e36

Browse files
committed
C#: Add launch task for debugging the tracing extractor.
1 parent 93e7202 commit 5020e36

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

csharp/.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,21 @@
6161
],
6262
"env": {}
6363
},
64+
{
65+
"name": "C#: Tracing Debug",
66+
"type": "coreclr",
67+
"request": "launch",
68+
"preLaunchTask": "dotnet: build",
69+
"program": "${workspaceFolder}/extractor/Semmle.Extraction.CSharp.Driver/bin/Debug/net9.0/Semmle.Extraction.CSharp.Driver.dll",
70+
// Set the path to the folder that should be extracted:
71+
"cwd": "${workspaceFolder}/ql/test/library-tests/dataflow/local",
72+
"args": [
73+
"LocalDataFlow.cs"
74+
],
75+
"env": {},
76+
"stopAtEntry": true,
77+
"justMyCode": false,
78+
"suppressJITOptimizations": true
79+
},
6480
]
6581
}

0 commit comments

Comments
 (0)