Files
Entkube/.vscode/launch.json
2026-05-18 08:37:09 +02:00

23 lines
569 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "EntKube.Web",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/src/EntKube.Web/bin/Debug/net10.0/EntKube.Web.dll",
"args": [],
"cwd": "${workspaceFolder}/src/EntKube.Web",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
]
}