Introduced a new .NET 8.0 web application project with a minimal API setup. Configured Swagger for API documentation and added a `Worker` class as a background service for periodic tasks. Added `launchSettings.json` to define development profiles for HTTP, HTTPS, and IIS Express. Configured logging levels in `appsettings.json` and `appsettings.Development.json`. Included `Swashbuckle.AspNetCore` package for Swagger integration and configured the HTTP request pipeline to support development and production environments.
9 lines
119 B
JSON
9 lines
119 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
}
|
|
}
|