Skip to content

Commit 7675aa3

Browse files
committed
C#: Add launch task for debugging the tracing extractor.
1 parent e22f4f0 commit 7675aa3

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

csharp/.vscode/launch.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"preLaunchTask": "dotnet: build",
3838
"program": "${workspaceFolder}/autobuilder/Semmle.Autobuild.CSharp/bin/Debug/net9.0/Semmle.Autobuild.CSharp.dll",
3939
// Set the path to the folder that should be extracted:
40-
"cwd": "${workspaceFolder}/ql/integration-tests/all-platforms/autobuild",
40+
"cwd": "cwd": "${workspaceFolder}/ql/integration-tests/all-platforms/autobuild",
4141
"stopAtEntry": true,
4242
"args": [],
4343
"env": {
@@ -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+
"stopAtEntry": true,
73+
"args": [
74+
"LocalDataFlow.cs",
75+
"/r:System.Private.CoreLib.dll",
76+
"/r:System.Collections.dll",
77+
],
78+
"env": {}
79+
},
6480
]
6581
}

0 commit comments

Comments
 (0)