-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBuslyCLI.Console.csproj
More file actions
27 lines (24 loc) · 1.22 KB
/
BuslyCLI.Console.csproj
File metadata and controls
27 lines (24 loc) · 1.22 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<RootNamespace>BuslyCLI</RootNamespace>
<PackAsTool>true</PackAsTool>
<!-- Dotnet tool packageid in nuget -->
<PackageId>dotnet-busly-cli</PackageId>
<ToolCommandName>busly-cli</ToolCommandName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageReference Include="NServiceBus" Version="9.2.7" />
<PackageReference Include="NServiceBus.AmazonSQS" Version="8.0.0" />
<PackageReference Include="NServiceBus.RabbitMQ" Version="10.1.4" />
<PackageReference Include="NServiceBus.Transport.AzureServiceBus" Version="5.1.2" />
<PackageReference Include="Spectre.Console.Cli" Version="0.53.0" />
<PackageReference Include="Spectre.Console.Cli.Extensions.DependencyInjection" Version="0.17.0" />
<PackageReference Include="YamlDotNet" Version="16.3.0" />
</ItemGroup>
</Project>