Files
RoslynBridge/RoslynBridge.WebApi/publish/appsettings.json
AJ Isaacs a7d4f352b7 build(webapi): update publish artifacts and switch to port 5001
Adjust published appsettings.json to listen on http://localhost:5001 and refresh
static web assets + DLL after rebuild.
2025-10-28 18:18:45 -04:00

34 lines
655 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"RoslynBridge.WebApi": "Information"
},
"EventLog": {
"SourceName": "Roslyn Bridge Web API",
"LogName": "Application",
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
},
"AllowedHosts": "*",
"RoslynBridge": {
"BaseUrl": "http://localhost:59123",
"TimeoutSeconds": 30
},
"History": {
"MaxEntries": 1000,
"Enabled": true
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:5001"
}
}
}
}