Files
dotnet-template/.vscode/launch.json
2024-09-04 17:17:16 +02:00

48 lines
1.4 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Rest Api - Watch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/MainProject/bin/Debug/net8.0/MainProject.dll",
"args": [],
"cwd": "${workspaceFolder}",
"console": "internalConsole",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "https://localhost:5000;https://localhost:5001",
"ASPNETCORE_DETAILEDERRORS": "1",
"ASPNETCORE_SHUTDOWNTIMEOUTSECONDS": "3"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)",
"uriFormat": "%s/swagger"
},
"postDebugTask": "watch"
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
],
"tasks": {
"label": "watch",
"type": "shell",
"command": "dotnet",
"args": [
"watch",
"run"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
}