2024-05-01 17:48:38 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-05-01 01:21:19 +04:00
|
|
|
|
|
2024-05-01 02:32:04 +04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-01 19:27:58 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.17" />
|
2024-05-01 17:48:38 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.17" />
|
2024-05-01 19:27:58 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.17">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-05-01 02:32:04 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\LawCompanyContracts\LawCompanyContracts.csproj" />
|
2024-05-01 18:40:30 +04:00
|
|
|
|
<ProjectReference Include="..\LawCompanyDataModels\LawCompanyDataModels.csproj" />
|
2024-05-01 02:32:04 +04:00
|
|
|
|
</ItemGroup>
|
2024-05-01 01:21:19 +04:00
|
|
|
|
|
|
|
|
|
</Project>
|