18 lines
537 B
XML
18 lines
537 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.2" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DataStoring.Contract\DataStoring.Contract.csproj" />
|
|
<ProjectReference Include="..\KanSan.DataClasses\KanSan.DataClasses.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|