AS400_API_DOTNET/.vscode/launch.json
2025-10-17 16:01:56 +07:00

32 lines
924 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "AS400API: Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "dotnet",
"args": [ "run", "--project", "${workspaceFolder}/AS400API.csproj" ],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://[^\\s]+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://0.0.0.0:5080"
}
},
{
"name": "AS400API: Attach",
"type": "coreclr",
"request": "attach"
}
]
}