2024-04-03 12:51:45 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2024-04-21 20:36:07 +04:00
|
|
|
<ItemGroup>
|
2024-04-27 21:07:45 +04:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.29" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.29">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2024-04-21 20:36:07 +04:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.22" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Contracts\Contracts.csproj" />
|
|
|
|
<ProjectReference Include="..\DataModels\DataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-04-03 12:51:45 +04:00
|
|
|
</Project>
|