2023-03-26 18:10:44 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-03-26 17:34:02 +04:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-03-26 18:10:44 +04:00
|
|
|
|
<ItemGroup>
|
2023-04-07 17:55:41 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.4" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.3" />
|
2023-04-07 16:35:57 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingContracts\CaseAccountingContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\CaseAccountingDataModels\CaseAccountingDataModels.csproj" />
|
2023-03-26 18:10:44 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-03-26 17:34:02 +04:00
|
|
|
|
</Project>
|