20 lines
612 B
XML
20 lines
612 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.6" />
|
|
<PackageReference Include="Npgsql" Version="8.0.7" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ProximaContracts.Domain\ProximaContracts.Domain.csproj" />
|
|
<ProjectReference Include="..\ProximaContracts.Shared\ProximaContracts.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|