22 lines
715 B
XML
22 lines
715 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
|
|
<DebugType>none</DebugType>
|
||
|
|
<DebugSymbols>false</DebugSymbols>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="EasyNetQ" Version="6.3.1" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
|
||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||
|
|
<PackageReference Include="RabbitMQ.Client" Version="6.2.1" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|