Files
steves-bot/.vscode/launch.json
T

21 lines
504 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Worker",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/StevesBot.Worker/bin/Debug/net9.0/StevesBot.Worker.dll",
"args": [],
"cwd": "${workspaceFolder}/src/StevesBot.Worker",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}