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>
|
2023-12-01 10:05:54 +10:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="7.0.12" />
|
2023-05-17 16:30:13 +10:00
|
|
|
<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-11-20 12:26:33 +10:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PARR.Constants\PARR.Constants.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-05-17 16:00:50 +10:00
|
|
|
</Project>
|