-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathNServiceBus.Transport.RabbitMQ.CommandLine.csproj
More file actions
47 lines (41 loc) · 2.79 KB
/
Copy pathNServiceBus.Transport.RabbitMQ.CommandLine.csproj
File metadata and controls
47 lines (41 loc) · 2.79 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<ToolCommandName>rabbitmq-transport</ToolCommandName>
<PackAsTool>True</PackAsTool>
<Description>A .NET global tool to manage the RabbitMQ transport for NServiceBus endpoints</Description>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\NServiceBus.snk</AssemblyOriginatorKeyFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DefineConstants>$(DefineConstants);COMMANDLINE</DefineConstants>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NServiceBus" Version="10.2.2" />
<PackageReference Include="RabbitMQ.Client" Version="7.2.1" />
<PackageReference Include="System.CommandLine" Version="2.0.8" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Particular.Packaging" Version="4.5.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Administration\BrokerVerifier.cs" Link="Transport\BrokerVerifier.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Administration\ManagementApi\**\*.cs" Link="Transport\ManagementApi\%(RecursiveDir)\%(Filename)%(Extension)" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Configuration\BrokerRequirementChecks.cs" Link="Transport\ManagementApi\BrokerRequirementChecks.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Configuration\CertificateLoader.cs" Link="Transport\CertificateLoader.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Configuration\ConnectionConfiguration.cs" Link="Transport\ConnectionConfiguration.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Configuration\ManagementApiConfiguration.cs" Link="Transport\ManagementApi\ManagementApiConfiguration.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Configuration\QueueType.cs" Link="Transport\QueueType.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Connection\ConnectionFactory.cs" Link="Transport\ConnectionFactory.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\DelayedDelivery\DelayInfrastructure.cs" Link="Transport\DelayInfrastructure.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\ExceptionExtensions.cs" Link="Transport\ExceptionExtensions.cs" />
<Compile Include="..\NServiceBus.Transport.RabbitMQ\Routing\**\*.cs" Link="Transport\Routing\%(RecursiveDir)\%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="NServiceBus.Transport.RabbitMQ.CommandLine.Tests" Key="$(NServiceBusTestsKey)" />
</ItemGroup>
</Project>