39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": ".NET Core Launch (web)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
"program": "${workspaceFolder}/back/Controllers/bin/Debug/net8.0/Controllers.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}/back/Controllers",
|
|
"stopAtEntry": false,
|
|
"serverReadyAction": {
|
|
"action": "openExternally",
|
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
|
},
|
|
"env": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
},
|
|
"sourceFileMap": {
|
|
"/Views": "${workspaceFolder}/Views"
|
|
}
|
|
},
|
|
{
|
|
"name": ".NET Core Attach",
|
|
"type": "coreclr",
|
|
"request": "attach"
|
|
},
|
|
{
|
|
"name": "Docker .NET Launch",
|
|
"type": "docker",
|
|
"request": "launch",
|
|
"preLaunchTask": "docker-run: debug",
|
|
"netCore": {
|
|
"appProject": "${workspaceFolder}/back/Controllers/Controllers.csproj"
|
|
}
|
|
}
|
|
]
|
|
} |