chore: add debugger config for vscode

This commit is contained in:
Stevan Freeborn
2025-10-10 15:38:19 -05:00
parent ff81c9ca43
commit f5e33d80cd
2 changed files with 44 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "coreclr",
"request": "launch",
"name": "Launch StreamShorts.Console",
"program": "${workspaceFolder}/src/StreamShorts.Console/bin/Debug/net9.0/win-x64/StreamShorts.Console.dll",
"args": [
"${input:filePath}"
],
"cwd": "${workspaceFolder}/src/StreamShorts.Console",
"stopAtEntry": false,
"console": "integratedTerminal",
"preLaunchTask": "build",
"justMyCode": false
}
],
"inputs": [
{
"id": "filePath",
"type": "promptString",
"description": "Enter the path to the video file",
"default": ""
}
]
}