Set up a new ASP.NET Core Web API project named `ReC.API` targeting .NET 8.0. - Added `ReC.sln` solution file with Debug and Release configurations. - Configured logging settings in `appsettings.json` and `appsettings.Development.json`. - Created `Program.cs` to bootstrap the application with controllers, Swagger, and middleware. - Defined project structure in `ReC.API.csproj`, including Swagger dependency and nullable reference types. - Added `launchSettings.json` with profiles for `http`, `https`, and `IIS Express`.
9 lines
119 B
JSON
9 lines
119 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
}
|
|
}
|