birbmap/Birdmap.DAL/Birdmap.DAL.csproj

23 lines
899 B
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2020-11-12 18:13:23 +01:00
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
2020-11-12 18:13:23 +01:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2020-11-12 18:13:23 +01:00
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Birdmap.Common\Birdmap.Common.csproj" />
</ItemGroup>
</Project>