phronCare/.vscode/launch.json

28 lines
810 B
JSON
Raw Normal View History

2025-01-28 18:56:36 -03:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch phronCare API",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/phronCare.API/bin/Debug/net8.0/phronCare.API.dll",
"args": [],
"cwd": "${workspaceFolder}/phronCare.API",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger/index.html"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_CONFIGURATION": "appsettings.json"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}