ultimate/Repository/Repository.csproj

19 lines
478 B
XML
Raw Permalink Normal View History

2023-06-12 10:26:01 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-12-22 09:15:40 +01:00
<TargetFramework>net8.0</TargetFramework>
2023-06-12 10:26:01 +02:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Contracts\Contracts.csproj" />
<ProjectReference Include="..\Entities\Entities.csproj" />
</ItemGroup>
</Project>