Files
stream-shorts/.vscode/launch.json
T

28 lines
675 B
JSON
Raw Normal View History

2025-10-10 15:38:19 -05:00
{
"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": ""
}
]
}