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`.
18 lines
382 B
XML
18 lines
382 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Controllers\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|