setup ef core repository & posgre, init migration Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
23 lines
827 B
XML
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>
|