2025-03-10 19:50:14 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-03-10 20:51:03 +04:00
|
|
|
|
<ItemGroup>
|
2025-03-11 22:44:23 +04:00
|
|
|
|
<PackageReference Include="AutoMapper" Version="14.0.0" />
|
2025-03-10 20:51:03 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-03-10 19:50:14 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PuferFishContracts\PuferFishContracts.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|