24 lines
853 B
XML
Raw Normal View History

2024-05-10 23:48:48 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-04-13 02:17:11 +04:00
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LawFirmContracts\LawFirmContracts.csproj" />
2024-05-10 23:48:48 +04:00
<ProjectReference Include="..\LawFirmDataModels\LawFirmDataModels.csproj" />
2024-04-13 02:17:11 +04:00
</ItemGroup>
</Project>