25 lines
991 B
XML
25 lines
991 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
|
|
<PackageReference Include="RabbitMQ.Client" Version="7.1.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PARR.Common\PARR.Common.csproj" />
|
|
<ProjectReference Include="..\PARR.Constants\PARR.Constants.csproj" />
|
|
<ProjectReference Include="..\PARR.Domain\PARR.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|