EasyNetQ.DI.LightInject 8.0.0-beta9

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.LightInject.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package EasyNetQ.DI.LightInject --version 8.0.0-beta9
                    
NuGet\Install-Package EasyNetQ.DI.LightInject -Version 8.0.0-beta9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyNetQ.DI.LightInject" Version="8.0.0-beta9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyNetQ.DI.LightInject" Version="8.0.0-beta9" />
                    
Directory.Packages.props
<PackageReference Include="EasyNetQ.DI.LightInject" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EasyNetQ.DI.LightInject --version 8.0.0-beta9
                    
#r "nuget: EasyNetQ.DI.LightInject, 8.0.0-beta9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EasyNetQ.DI.LightInject@8.0.0-beta9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta9&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta9&prerelease
                    
Install as a Cake Tool

Build status

NuGet Status Nuget Status Nuget Status

Activity Activity Activity

EasyNetQ Logo

A Nice .NET API for RabbitMQ

Initial development was sponsored by travel industry experts 15below

Goals:

  1. To make working with RabbitMQ on .NET as easy as possible.

To connect to a RabbitMQ broker...

    var bus = RabbitHutch.CreateBus("host=localhost");

To publish a message...

    await bus.PubSub.PublishAsync(message);

To publish a message with 5s delay...

    await bus.Scheduler.FuturePublishAsync(message, TimeSpan.FromSeconds(5));

To subscribe to a message...

    await bus.PubSub.SubscribeAsync<MyMessage>(
        "my_subscription_id", msg => Console.WriteLine(msg.Text)
    );

Remote procedure call...

    var request = new TestRequestMessage {Text = "Hello from the client! "};
    await bus.Rpc.RequestAsync<TestRequestMessage, TestResponseMessage>(request);

RPC server...

    await bus.Rpc.RespondAsync<TestRequestMessage, TestResponseMessage>(request =>
        new TestResponseMessage{ Text = request.Text + " all done!" }
    );

Getting started

Just open EasyNetQ.sln in VisualStudio or Rider and build. All the required dependencies for the solution file to build the software are included.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.0-beta96 141 3/15/2024
8.0.0-beta95 287 10/22/2023
8.0.0-beta94 202 6/18/2023
8.0.0-beta93 210 6/17/2023
8.0.0-beta92 197 6/17/2023
8.0.0-beta91 218 6/11/2023
8.0.0-beta90 204 5/8/2023
8.0.0-beta9 235 3/21/2023
8.0.0-beta8 233 2/20/2023
8.0.0-beta6 237 1/29/2023
8.0.0-beta5 242 1/20/2023
8.0.0-beta4 216 1/5/2023
8.0.0-beta3 247 12/29/2022
8.0.0-beta2 238 12/16/2022
8.0.0-beta10 238 3/21/2023
8.0.0-beta1 213 12/15/2022
8.0.0-alpha9 246 12/14/2022
8.0.0-alpha8 251 11/30/2022
8.0.0-alpha7 259 11/12/2022
8.0.0-alpha6 252 10/29/2022
8.0.0-alpha5 238 10/5/2022
8.0.0-alpha4 284 10/1/2022
8.0.0-alpha3 303 9/26/2022
8.0.0-alpha2 304 9/21/2022
8.0.0-alpha1 316 9/19/2022
7.8.0 2,035 12/16/2023
7.7.0 197 11/19/2023
7.6.0 227 10/12/2023
7.5.5 1,787 7/20/2023
7.5.4 255 7/19/2023
7.5.3 270 6/15/2023
7.5.2 300 5/14/2023
7.5.1 332 5/4/2023
7.5.0 448 3/25/2023
7.4.3 801 2/3/2023
7.4.1 480 1/31/2023
7.4.0 461 1/29/2023
7.3.12 467 1/23/2023
7.3.11 457 1/22/2023
7.3.10 473 1/19/2023
7.3.9 439 1/17/2023
7.3.8 495 1/4/2023
7.3.7 477 12/22/2022
7.3.6 627 12/19/2022
7.3.5 524 11/30/2022
7.3.4 502 11/30/2022
7.3.3 624 11/24/2022
7.3.2 685 11/15/2022
7.3.1 570 11/12/2022
7.3.0 696 10/29/2022
7.3.0-alpha3 236 10/15/2022
7.2.1 794 10/9/2022
7.2.1-alpha1 228 10/6/2022
7.2.0 848 9/17/2022
7.2.0-alpha1 302 9/15/2022
7.1.1-alpha1 332 9/14/2022
7.1.0 751 9/13/2022
7.0.4 739 9/7/2022
7.0.3 653 9/5/2022
7.0.3-alpha1 239 9/5/2022
7.0.2 631 9/5/2022
7.0.1 650 8/27/2022
7.0.0 790 7/23/2022
7.0.0-rc5 283 6/28/2022
7.0.0-rc4 246 6/27/2022
7.0.0-rc3 291 6/20/2022
7.0.0-rc2 277 6/9/2022
7.0.0-rc1 276 6/9/2022
7.0.0-beta9 260 6/8/2022
7.0.0-beta7 253 6/5/2022
7.0.0-beta6 272 5/24/2022
7.0.0-beta5 344 11/18/2021
7.0.0-beta4 335 11/9/2021
7.0.0-beta3 390 11/6/2021
7.0.0-beta2 384 9/29/2021
7.0.0-beta1 364 9/13/2021
7.0.0-alpha9 329 8/25/2021
7.0.0-alpha8 320 8/25/2021
7.0.0-alpha7 349 8/25/2021
7.0.0-alpha6 350 8/16/2021
7.0.0-alpha5 356 8/16/2021
7.0.0-alpha4 609 1/20/2021
7.0.0-alpha3 635 12/31/2020
7.0.0-alpha2 605 12/28/2020
6.5.2 704 6/20/2022
6.4.1 676 5/22/2022
6.4.0-alpha0096 642 12/6/2020
6.4.0-alpha0095 624 12/6/2020
6.4.0-alpha0094 673 12/6/2020
6.4.0-alpha.99 298 12/26/2020
6.4.0-alpha.97 318 12/9/2020
6.3.1 1,050 11/28/2020
6.3.0 1,000 11/22/2020
6.2.0 1,065 11/15/2020
6.1.0 1,022 11/10/2020
6.0.3 968 11/9/2020
6.0.2 1,012 11/6/2020
6.0.1 1,046 11/1/2020
5.6.0 1,026 10/10/2020
5.5.0 1,044 10/5/2020
5.4.1 1,110 10/4/2020
5.4.0 1,025 10/1/2020
5.3.0-alpha0079 709 6/16/2020
5.3.0-alpha0078 708 6/15/2020
5.3.0-alpha0077 698 6/15/2020
5.3.0-alpha0076 714 6/15/2020
5.3.0-alpha0075 695 6/14/2020
5.3.0-alpha0074 674 6/12/2020
5.3.0-alpha0073 700 6/12/2020
5.3.0-alpha0072 686 6/11/2020
5.3.0-alpha0070 746 6/7/2020
5.2.2 1,002 9/4/2020
5.2.1 1,004 9/3/2020
5.2.0 1,054 6/7/2020
5.2.0-alpha0073 691 5/26/2020
5.2.0-alpha0072 772 5/25/2020
5.2.0-alpha0071 736 5/25/2020
5.2.0-alpha0070 747 5/24/2020
5.2.0-alpha0069 776 5/24/2020
5.2.0-alpha0066 765 5/21/2020
5.2.0-alpha0065 719 5/20/2020
5.2.0-alpha0064 747 5/17/2020
5.2.0-alpha0057 705 5/10/2020
5.2.0-alpha0056 707 5/8/2020
5.1.2 1,041 5/24/2020
5.1.1 1,025 5/10/2020
5.1.0 1,029 5/7/2020
5.1.0-alpha0055 725 5/3/2020
5.1.0-alpha0054 760 5/3/2020
5.1.0-alpha0053 723 4/30/2020
5.0.5 1,045 5/4/2020
5.0.4 1,040 5/3/2020
5.0.3 1,045 5/2/2020
5.0.2 1,061 5/2/2020
5.0.1 1,039 5/2/2020
5.0.0 1,039 4/29/2020
4.1.0-alpha0014 724 4/29/2020
4.1.0-alpha0013 724 4/24/2020
4.1.0-alpha0005 722 4/20/2020
4.1.0-alpha0004 725 4/18/2020
4.1.0-alpha0001 706 4/17/2020
4.0.9 1,043 4/29/2020
4.0.8 1,051 4/28/2020
4.0.7 1,025 4/27/2020
4.0.6 1,023 4/24/2020
4.0.5 1,003 4/22/2020
4.0.4 1,019 4/21/2020
4.0.3 1,035 4/20/2020
4.0.2 1,048 4/20/2020
4.0.1 1,056 4/20/2020
4.0.0 1,007 4/18/2020
3.8.0 1,052 4/17/2020
3.8.0-alpha0048 747 2/28/2020
3.8.0-alpha0042 778 2/13/2020
3.8.0-alpha0041 762 1/8/2020
3.8.0-alpha0040 780 9/26/2019
3.8.0-alpha0039 738 9/25/2019
3.7.1 1,121 9/25/2019
3.7.0 1,103 9/23/2019
3.7.0-alpha0038 801 8/3/2019
3.7.0-alpha0037 818 8/1/2019
3.6.0 1,204 7/17/2019
3.6.0-alpha0036 805 6/4/2019
3.6.0-alpha0035 863 6/2/2019
3.6.0-alpha0034 853 6/2/2019
3.6.0-alpha0033 838 6/2/2019
3.6.0-alpha0031 820 5/4/2019
3.5.2 1,184 7/11/2019
3.5.1 1,275 6/2/2019
3.5.0 1,259 5/2/2019
3.5.0-alpha0036 831 4/10/2019
3.5.0-alpha0031 844 3/25/2019
3.5.0-alpha0030 830 3/21/2019
3.5.0-alpha0029 812 3/19/2019
3.5.0-alpha0027 842 3/18/2019
3.5.0-alpha0026 848 3/18/2019
3.5.0-alpha0025 834 3/17/2019
3.5.0-alpha0024 822 3/16/2019
3.5.0-alpha0021 850 3/15/2019
3.5.0-alpha0020 807 3/14/2019
3.5.0-alpha0019 856 3/14/2019
3.5.0-alpha0018 861 3/14/2019
3.5.0-alpha0013 830 3/14/2019
3.4.5 1,243 3/21/2019
3.4.4 1,253 3/16/2019
3.4.3 1,241 3/14/2019
3.4.2 1,228 3/13/2019
3.4.1 1,255 3/12/2019
3.4.0 1,351 2/19/2019
3.4.0-alpha0022 973 1/27/2019
3.4.0-alpha0021 900 1/25/2019
3.4.0-alpha0020 1,000 12/21/2018
3.4.0-alpha0019 960 12/6/2018
3.4.0-alpha0018 956 11/21/2018
3.4.0-alpha0017 937 11/20/2018
3.4.0-alpha0016 983 11/5/2018
3.4.0-alpha0015 978 11/2/2018
3.4.0-alpha0011 1,051 11/1/2018
3.4.0-alpha0010 1,074 10/3/2018
3.4.0-alpha0009 1,080 9/16/2018
3.4.0-alpha0008 1,062 9/1/2018
3.4.0-alpha0007 1,016 8/29/2018
3.4.0-alpha0006 1,004 8/28/2018
3.4.0-alpha0005 1,091 8/28/2018
3.4.0-alpha0004 1,077 8/23/2018
3.4.0-alpha0003 1,079 8/22/2018
3.4.0-alpha0002 1,135 8/10/2018
3.4.0-alpha0001 1,228 7/30/2018
3.3.9 1,305 1/25/2019
3.3.8 1,397 1/18/2019
3.3.7 1,420 1/5/2019
3.3.6 1,352 12/19/2018
3.3.5 1,473 11/21/2018
3.3.4 1,440 11/20/2018
3.3.3 1,376 11/11/2018
3.3.2 1,437 10/12/2018
3.3.1 1,475 8/28/2018
3.3.0 1,653 7/18/2018
3.3.0-alpha0007 1,169 7/18/2018
3.3.0-alpha0006 1,375 7/17/2018
3.3.0-alpha0005 1,392 7/17/2018
3.3.0-alpha0004 1,178 7/17/2018
3.3.0-alpha0003 1,335 7/15/2018
3.3.0-alpha0001 1,417 7/11/2018
3.2.0 1,663 7/12/2018
3.1.2 1,857 7/11/2018
3.1.1 1,654 7/4/2018
3.1.0 1,789 6/20/2018
3.1.0-alpha0019 1,386 7/4/2018
3.1.0-alpha0017 1,439 7/2/2018
3.1.0-alpha0016 1,167 6/30/2018
3.1.0-alpha0014 1,212 6/26/2018
3.1.0-alpha0011 1,214 6/23/2018
3.1.0-alpha0010 1,353 6/20/2018
3.1.0-alpha0009 1,169 6/20/2018
3.1.0-alpha0008 1,191 6/19/2018
3.1.0-alpha0007 1,400 6/17/2018
3.1.0-alpha0006 1,168 6/14/2018
3.1.0-alpha0005 1,177 6/14/2018
3.1.0-alpha0004 1,397 5/28/2018
3.0.1 1,836 7/4/2018
3.0.0 1,909 5/24/2018
2.4.0-alpha0027 1,469 5/23/2018
2.4.0-alpha0026 1,367 5/23/2018
2.4.0-alpha0025 1,388 5/22/2018
2.4.0-alpha0024 1,406 5/18/2018
2.4.0-alpha0023 1,432 5/16/2018
2.4.0-alpha0022 1,501 5/16/2018
2.4.0-alpha0021 1,490 5/15/2018
2.4.0-alpha0020 1,537 5/15/2018
2.4.0-alpha0019 1,547 4/20/2018
2.4.0-alpha0017 1,373 4/19/2018
2.4.0-alpha0016 1,443 4/13/2018
2.4.0-alpha0015 1,412 4/3/2018
2.4.0-alpha0014 1,230 4/1/2018
2.4.0-alpha0013 1,812 3/30/2018
2.4.0-alpha0009 1,203 2/20/2018
2.4.0-alpha0002 1,332 12/1/2017
2.3.3 1,919 4/24/2018
2.3.1 1,688 2/20/2018
2.3.0 1,934 2/19/2018
2.3.0-alpha0006 1,223 11/21/2017
2.3.0-alpha0005 1,243 11/13/2017
2.3.0-alpha0002 1,247 9/18/2017
2.2.0 1,713 11/13/2017
2.2.0-alpha0009 1,238 9/14/2017
2.2.0-alpha0008 1,230 9/11/2017
2.2.0-alpha0007 1,220 9/10/2017
2.2.0-alpha0006 1,243 8/18/2017
2.2.0-alpha0002 1,222 8/18/2017
2.1.0 1,789 8/18/2017
2.1.0-alpha0022 1,255 8/18/2017
2.1.0-alpha0020 1,261 7/24/2017
2.1.0-alpha0018 1,275 7/13/2017
2.1.0-alpha0016 1,340 7/12/2017
2.1.0-alpha0011 1,209 7/11/2017
2.1.0-alpha0005 1,293 7/3/2017
2.1.0-alpha0002 1,281 7/3/2017
2.0.4 1,644 7/24/2017
2.0.4-unstable0013 1,371 6/26/2017
2.0.4-unstable0011 1,341 6/26/2017
2.0.4-unstable0010 1,316 6/11/2017
2.0.4-unstable0009 1,401 6/1/2017
2.0.4-unstable0007 1,325 5/4/2017
2.0.4-unstable0004 1,300 5/1/2017
2.0.4-unstable0003 1,310 5/1/2017
2.0.4-unstable0002 1,326 4/30/2017
2.0.4-unstable0001 1,305 4/27/2017
2.0.4-alpha0038 1,276 7/1/2017
2.0.3-unstable0064 1,332 4/27/2017
2.0.3-unstable0058 1,312 3/28/2017
2.0.3-unstable0057 1,313 3/15/2017
2.0.3-unstable0055 1,352 2/10/2017
2.0.3-unstable0053 1,312 2/9/2017
2.0.3-unstable0052 1,288 2/8/2017
1.1.4.506 1,652 7/6/2017
1.1.3.500 1,728 6/28/2017
1.1.2.497 1,668 6/21/2017
1.1.1.494 1,698 5/30/2017
1.1.0.492 1,664 5/4/2017
1.0.4.483 1,658 4/26/2017
1.0.3.481 1,700 4/4/2017
1.0.2.478 1,703 3/15/2017
1.0.1.475 1,664 2/10/2017
1.0.0.469 1,698 2/8/2017
1.0.0 1,662 6/30/2017
0.63.7.467 1,711 2/7/2017
0.63.6.463 1,677 2/7/2017
0.63.6.460 1,614 2/5/2017
0.63.5.454 1,693 10/17/2016
0.63.4.453 1,706 10/10/2016
0.63.3.452 1,652 9/26/2016
0.63.1.451 1,856 9/19/2016
0.63.1.450 1,731 9/11/2016
0.63.0.448 1,648 8/12/2016
0.62.1.445 1,691 8/8/2016
0.62.0.444 1,710 8/8/2016
0.61.1.443 1,723 8/5/2016
0.61.0.442 1,993 8/2/2016
0.60.1.441 1,877 7/31/2016
0.60.0.440 1,822 7/25/2016
0.59.0.439 1,779 7/18/2016
0.59.0.437 1,733 7/18/2016