Skip to content

Commit

Permalink
Merge pull request #18162 from michaelnebel/csharp/launchtracing
Browse files Browse the repository at this point in the history
C#: Add launch task for debugging the tracing extractor.
  • Loading branch information
michaelnebel authored Dec 2, 2024
2 parents 7cd344c + 5020e36 commit 2a33539
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions csharp/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,21 @@
],
"env": {}
},
{
"name": "C#: Tracing Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "dotnet: build",
"program": "${workspaceFolder}/extractor/Semmle.Extraction.CSharp.Driver/bin/Debug/net9.0/Semmle.Extraction.CSharp.Driver.dll",
// Set the path to the folder that should be extracted:
"cwd": "${workspaceFolder}/ql/test/library-tests/dataflow/local",
"args": [
"LocalDataFlow.cs"
],
"env": {},
"stopAtEntry": true,
"justMyCode": false,
"suppressJITOptimizations": true
},
]
}

0 comments on commit 2a33539

Please sign in to comment.