{ "folders": [ { "path": "." } ], "settings": { "dotnet.defaultSolution": "SoaFE Portal.slnx" }, "tasks": { "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/src/Server/Server.csproj" ], "problemMatcher": "$msCompile", "group": "build" } ] }, "launch": { "version": "0.2.0", "configurations": [ { "name": "Debug (ENV: Dev)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/src/Server/bin/Debug/net10.0/SoaFE.Portal.Server.dll", "cwd": "${workspaceFolder}/src/Server", "args": [], "env": { "ASPNETCORE_ENVIRONMENT": "Development", "DOTNET_USE_POLLING_FILE_WATCHER": "true", "DOTNET_HOTRELOAD": "1" }, "console": "internalConsole", "stopAtEntry": false, "serverReadyAction": { "pattern": "Now listening on:\\s+(https?://\\S+)", "uriFormat": "%s", "action": "openExternally" } } ] } }