Files
AI-Stock-Trader/.vscode/launch.json
T
2026-02-13 14:49:41 -08:00

25 lines
628 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch ASP.NET Core backend",
"type": "coreclr",
"request": "launch",
"program": "WebServer.dll",
"args": [],
"preLaunchTask": "server-build",
"cwd": "${workspaceFolder}/WebServer/bin/Debug/net9.0/",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}