2023-08-25 15:32:06 +10:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-09-01 11:47:39 +10:00
|
|
|
<ItemGroup>
|
2023-09-21 15:54:46 +10:00
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
2023-09-01 16:19:32 +10:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
|
2023-09-01 11:47:39 +10:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-08-25 15:32:06 +10:00
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PARR.BLL\PARR.BLL.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PARR.DAL\PARR.DAL.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|