19 lines
568 B
XML
19 lines
568 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||
|
<Version>2.0.0</Version>
|
||
|
<Authors>Mark van Renswoude</Authors>
|
||
|
<Company>Mark van Renswoude</Company>
|
||
|
<Product>Tapeti Command-line Utility</Product>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="CommandLineParser" Version="2.6.0" />
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
||
|
<PackageReference Include="RabbitMQ.Client" Version="5.1.2" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|