37 lines
1.9 KiB
XML
37 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>MinAttest.Api</RootNamespace>
|
|
<AssemblyName>MinAttest.Api</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.*" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.*" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.*">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.*" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.*" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="9.*" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.*" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="9.*" />
|
|
<PackageReference Include="MediatR" Version="12.*" />
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.*" />
|
|
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="9.*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\MinAttest.ServiceDefaults\MinAttest.ServiceDefaults.csproj" />
|
|
<ProjectReference Include="..\MinAttest.Infrastructure\MinAttest.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\MinAttest.Domain\MinAttest.Domain.csproj" />
|
|
<ProjectReference Include="..\MinAttest.Application\MinAttest.Application.csproj" />
|
|
<ProjectReference Include="..\MinAttest.Contracts\MinAttest.Contracts.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|