12345678910111213141516171819202122232425262728 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <NoWarn>$(NoWarn);1591</NoWarn>
- <UserSecretsId>67c0000d-e09b-459d-a6a4-fb5c449d5c75</UserSecretsId> <!--The NoWarn block here specifies that .NET won’t warn for missing comments on other methods as it’ll do this for all methods in your project-->
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MicroElements.Swashbuckle.FluentValidation" Version="6.0.0" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.4">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0" />
- <PackageReference Include="Swashbuckle.AspNetCore.Filters" Version="8.0.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\AipGateway.API.Application\AipGateway.API.Application.csproj" />
- <ProjectReference Include="..\AipGateway.API.Domain\AipGateway.API.Domain.csproj" />
- </ItemGroup>
- </Project>
|