-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceBusSpy.csproj
29 lines (27 loc) · 1.2 KB
/
ServiceBusSpy.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<ToolCommandName>servicebusspy</ToolCommandName>
<PackAsTool>true</PackAsTool>
<OutputType>Exe</OutputType>
</PropertyGroup>
<!-- NuGet -->
<PropertyGroup>
<Title>Service Bus Spy</Title>
<Description>Inspect Azure Service Bus messages silently without touching them.</Description>
<PackageVersion>1.2.0</PackageVersion>
<IsPackable>true</IsPackable>
<Authors>Robin-Manuel Thiel</Authors>
<PackageTags>Azure; Service Bus</PackageTags>
<License>MIT</License>
<IsTool>true</IsTool>
<RepositoryUrl>https://github.com/robinmanuelthiel/servicebusspy</RepositoryUrl>
<PackageIconUrl>https://raw.githubusercontent.com/robinmanuelthiel/servicebusspy/master/logo.png</PackageIconUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.3" />
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="3.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
</ItemGroup>
</Project>