fix: correct locking issue that was preventing progress

This commit is contained in:
Stevan Freeborn
2025-05-14 16:45:44 -05:00
parent 3458890960
commit 16aa4b5775
9 changed files with 147 additions and 52 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"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"
}
]
}