{ "version": "0.2.0", "configurations": [ { "name": "ApiServer", "type": "coreclr", "request": "launch", "preLaunchTask": "build ApiServer", "program": "${workspaceFolder}/src/ApiServer/bin/Debug/net10.0/ApiServer.dll", "args": [], "cwd": "${workspaceFolder}/src/ApiServer", "stopAtEntry": false, "env": { "ASPNETCORE_ENVIRONMENT": "Development" } }, { "name": "Console", "type": "coreclr", "request": "launch", "preLaunchTask": "build Console", "program": "dotnet", "args": [ "run", "--no-build", "--project", "${workspaceFolder}/src/Console/Console.csproj" ], "cwd": "${workspaceFolder}", "console": "integratedTerminal", "stopAtEntry": false } ] }