system-praktyk-api/src/Internship.Repository/Internship.Repository.csproj
maxchil 61889318a7 add ef repository, initial migration (#9)
setup ef core repository & posgre, init migration

Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
2020-06-12 17:03:50 +02:00

23 lines
827 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EFCore.NamingConventions" Version="1.1.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.4" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Internship.Core\Internship.Core.csproj" />
</ItemGroup>
</Project>