Files
parr_api/PARR.DAL/PARR.DAL.csproj

21 lines
848 B
XML
Raw Normal View History

2023-05-17 16:00:50 +10:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2023-05-17 16:30:13 +10:00
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
2023-09-19 14:34:55 +10:00
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
2023-05-17 16:30:13 +10:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
</ItemGroup>
2023-05-17 16:00:50 +10:00
</Project>