ai-dev-template / csharp /appsettings.json
Jordandevlog's picture
Upload csharp/appsettings.json
aba4760 verified
Raw
History Blame Contribute Delete
524 Bytes
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Serilog": {
"Using": ["Serilog.Sinks.Console"],
"MinimumLevel": "Information",
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss} | {SourceContext} | {Level:u3} | {Message:lj}{NewLine}{Exception}"
}
}
]
},
"AllowedHosts": "*",
"AppSettings": {
"AppName": "MyApp",
"Port": 8080
}
}