EasyNetQ.DI.LightInject 8.0.0-beta6

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-beta6
                    
NuGet\Install-Package EasyNetQ.DI.LightInject -Version 8.0.0-beta6
                    
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-beta6" />
                    
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-beta6" />
                    
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-beta6
                    
#r "nuget: EasyNetQ.DI.LightInject, 8.0.0-beta6"
                    
#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-beta6
                    
#: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-beta6&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta6&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 186 3/15/2024
8.0.0-beta95 302 10/22/2023
8.0.0-beta94 236 6/18/2023
8.0.0-beta93 237 6/17/2023
8.0.0-beta92 232 6/17/2023
8.0.0-beta91 275 6/11/2023
8.0.0-beta90 258 5/8/2023
8.0.0-beta9 282 3/21/2023
8.0.0-beta8 289 2/20/2023
8.0.0-beta6 283 1/29/2023
8.0.0-beta5 278 1/20/2023
8.0.0-beta4 268 1/5/2023
8.0.0-beta3 294 12/29/2022
8.0.0-beta2 289 12/16/2022
8.0.0-beta10 273 3/21/2023
8.0.0-beta1 253 12/15/2022
8.0.0-alpha9 297 12/14/2022
8.0.0-alpha8 308 11/30/2022
8.0.0-alpha7 310 11/12/2022
8.0.0-alpha6 309 10/29/2022
8.0.0-alpha5 279 10/5/2022
8.0.0-alpha4 336 10/1/2022
8.0.0-alpha3 363 9/26/2022
8.0.0-alpha2 344 9/21/2022
8.0.0-alpha1 378 9/19/2022
7.8.0 2,398 12/16/2023
7.7.0 231 11/19/2023
7.6.0 260 10/12/2023
7.5.5 1,827 7/20/2023
7.5.4 282 7/19/2023
7.5.3 303 6/15/2023
7.5.2 352 5/14/2023
7.5.1 362 5/4/2023
7.5.0 474 3/25/2023
7.4.3 840 2/3/2023
7.4.1 532 1/31/2023
7.4.0 508 1/29/2023
7.3.12 515 1/23/2023
7.3.11 496 1/22/2023
7.3.10 512 1/19/2023
7.3.9 488 1/17/2023
7.3.8 534 1/4/2023
7.3.7 504 12/22/2022
7.3.6 678 12/19/2022
7.3.5 565 11/30/2022
7.3.4 547 11/30/2022
7.3.3 679 11/24/2022
7.3.2 723 11/15/2022
7.3.1 618 11/12/2022
7.3.0 738 10/29/2022
7.3.0-alpha3 294 10/15/2022
7.2.1 839 10/9/2022
7.2.1-alpha1 271 10/6/2022
7.2.0 894 9/17/2022
7.2.0-alpha1 344 9/15/2022
7.1.1-alpha1 382 9/14/2022
7.1.0 807 9/13/2022
7.0.4 785 9/7/2022
7.0.3 699 9/5/2022
7.0.3-alpha1 293 9/5/2022
7.0.2 677 9/5/2022
7.0.1 707 8/27/2022
7.0.0 839 7/23/2022
7.0.0-rc5 340 6/28/2022
7.0.0-rc4 299 6/27/2022
7.0.0-rc3 343 6/20/2022
7.0.0-rc2 330 6/9/2022
7.0.0-rc1 325 6/9/2022
7.0.0-beta9 312 6/8/2022
7.0.0-beta7 299 6/5/2022
7.0.0-beta6 303 5/24/2022
7.0.0-beta5 406 11/18/2021
7.0.0-beta4 394 11/9/2021
7.0.0-beta3 436 11/6/2021
7.0.0-beta2 432 9/29/2021
7.0.0-beta1 422 9/13/2021
7.0.0-alpha9 374 8/25/2021
7.0.0-alpha8 367 8/25/2021
7.0.0-alpha7 396 8/25/2021
7.0.0-alpha6 407 8/16/2021
7.0.0-alpha5 413 8/16/2021
7.0.0-alpha4 663 1/20/2021
7.0.0-alpha3 684 12/31/2020
7.0.0-alpha2 652 12/28/2020
6.5.2 760 6/20/2022
6.4.1 719 5/22/2022
6.4.0-alpha0096 700 12/6/2020
6.4.0-alpha0095 672 12/6/2020
6.4.0-alpha0094 734 12/6/2020
6.4.0-alpha.99 323 12/26/2020
6.4.0-alpha.97 356 12/9/2020
6.3.1 1,104 11/28/2020
6.3.0 1,058 11/22/2020
6.2.0 1,118 11/15/2020
6.1.0 1,071 11/10/2020
6.0.3 1,020 11/9/2020
6.0.2 1,078 11/6/2020
6.0.1 1,101 11/1/2020
5.6.0 1,085 10/10/2020
5.5.0 1,104 10/5/2020
5.4.1 1,168 10/4/2020
5.4.0 1,088 10/1/2020
5.3.0-alpha0079 769 6/16/2020
5.3.0-alpha0078 765 6/15/2020
5.3.0-alpha0077 751 6/15/2020
5.3.0-alpha0076 752 6/15/2020
5.3.0-alpha0075 743 6/14/2020
5.3.0-alpha0074 736 6/12/2020
5.3.0-alpha0073 748 6/12/2020
5.3.0-alpha0072 736 6/11/2020
5.3.0-alpha0070 794 6/7/2020
5.2.2 1,062 9/4/2020
5.2.1 1,051 9/3/2020
5.2.0 1,110 6/7/2020
5.2.0-alpha0073 737 5/26/2020
5.2.0-alpha0072 840 5/25/2020
5.2.0-alpha0071 803 5/25/2020
5.2.0-alpha0070 805 5/24/2020
5.2.0-alpha0069 823 5/24/2020
5.2.0-alpha0066 824 5/21/2020
5.2.0-alpha0065 773 5/20/2020
5.2.0-alpha0064 815 5/17/2020
5.2.0-alpha0057 766 5/10/2020
5.2.0-alpha0056 764 5/8/2020
5.1.2 1,104 5/24/2020
5.1.1 1,084 5/10/2020
5.1.0 1,091 5/7/2020
5.1.0-alpha0055 787 5/3/2020
5.1.0-alpha0054 809 5/3/2020
5.1.0-alpha0053 772 4/30/2020
5.0.5 1,113 5/4/2020
5.0.4 1,077 5/3/2020
5.0.3 1,093 5/2/2020
5.0.2 1,125 5/2/2020
5.0.1 1,109 5/2/2020
5.0.0 1,082 4/29/2020
4.1.0-alpha0014 770 4/29/2020
4.1.0-alpha0013 789 4/24/2020
4.1.0-alpha0005 783 4/20/2020
4.1.0-alpha0004 781 4/18/2020
4.1.0-alpha0001 773 4/17/2020
4.0.9 1,101 4/29/2020
4.0.8 1,102 4/28/2020
4.0.7 1,084 4/27/2020
4.0.6 1,078 4/24/2020
4.0.5 1,058 4/22/2020
4.0.4 1,079 4/21/2020
4.0.3 1,096 4/20/2020
4.0.2 1,086 4/20/2020
4.0.1 1,124 4/20/2020
4.0.0 1,064 4/18/2020
3.8.0 1,107 4/17/2020
3.8.0-alpha0048 807 2/28/2020
3.8.0-alpha0042 847 2/13/2020
3.8.0-alpha0041 820 1/8/2020
3.8.0-alpha0040 842 9/26/2019
3.8.0-alpha0039 800 9/25/2019
3.7.1 1,171 9/25/2019
3.7.0 1,152 9/23/2019
3.7.0-alpha0038 845 8/3/2019
3.7.0-alpha0037 870 8/1/2019
3.6.0 1,261 7/17/2019
3.6.0-alpha0036 849 6/4/2019
3.6.0-alpha0035 910 6/2/2019
3.6.0-alpha0034 905 6/2/2019
3.6.0-alpha0033 920 6/2/2019
3.6.0-alpha0031 895 5/4/2019
3.5.2 1,243 7/11/2019
3.5.1 1,350 6/2/2019
3.5.0 1,330 5/2/2019
3.5.0-alpha0036 880 4/10/2019
3.5.0-alpha0031 910 3/25/2019
3.5.0-alpha0030 893 3/21/2019
3.5.0-alpha0029 871 3/19/2019
3.5.0-alpha0027 912 3/18/2019
3.5.0-alpha0026 902 3/18/2019
3.5.0-alpha0025 889 3/17/2019
3.5.0-alpha0024 896 3/16/2019
3.5.0-alpha0021 905 3/15/2019
3.5.0-alpha0020 884 3/14/2019
3.5.0-alpha0019 899 3/14/2019
3.5.0-alpha0018 909 3/14/2019
3.5.0-alpha0013 877 3/14/2019
3.4.5 1,297 3/21/2019
3.4.4 1,321 3/16/2019
3.4.3 1,288 3/14/2019
3.4.2 1,254 3/13/2019
3.4.1 1,314 3/12/2019
3.4.0 1,408 2/19/2019
3.4.0-alpha0022 1,027 1/27/2019
3.4.0-alpha0021 959 1/25/2019
3.4.0-alpha0020 1,078 12/21/2018
3.4.0-alpha0019 1,023 12/6/2018
3.4.0-alpha0018 1,029 11/21/2018
3.4.0-alpha0017 996 11/20/2018
3.4.0-alpha0016 1,042 11/5/2018
3.4.0-alpha0015 1,031 11/2/2018
3.4.0-alpha0011 1,120 11/1/2018
3.4.0-alpha0010 1,123 10/3/2018
3.4.0-alpha0009 1,142 9/16/2018
3.4.0-alpha0008 1,111 9/1/2018
3.4.0-alpha0007 1,075 8/29/2018
3.4.0-alpha0006 1,052 8/28/2018
3.4.0-alpha0005 1,139 8/28/2018
3.4.0-alpha0004 1,137 8/23/2018
3.4.0-alpha0003 1,124 8/22/2018
3.4.0-alpha0002 1,196 8/10/2018
3.4.0-alpha0001 1,292 7/30/2018
3.3.9 1,374 1/25/2019
3.3.8 1,460 1/18/2019
3.3.7 1,459 1/5/2019
3.3.6 1,405 12/19/2018
3.3.5 1,523 11/21/2018
3.3.4 1,488 11/20/2018
3.3.3 1,424 11/11/2018
3.3.2 1,475 10/12/2018
3.3.1 1,528 8/28/2018
3.3.0 1,738 7/18/2018
3.3.0-alpha0007 1,243 7/18/2018
3.3.0-alpha0006 1,482 7/17/2018
3.3.0-alpha0005 1,480 7/17/2018
3.3.0-alpha0004 1,249 7/17/2018
3.3.0-alpha0003 1,431 7/15/2018
3.3.0-alpha0001 1,524 7/11/2018
3.2.0 1,738 7/12/2018
3.1.2 1,950 7/11/2018
3.1.1 1,738 7/4/2018
3.1.0 1,910 6/20/2018
3.1.0-alpha0019 1,489 7/4/2018
3.1.0-alpha0017 1,539 7/2/2018
3.1.0-alpha0016 1,243 6/30/2018
3.1.0-alpha0014 1,291 6/26/2018
3.1.0-alpha0011 1,311 6/23/2018
3.1.0-alpha0010 1,437 6/20/2018
3.1.0-alpha0009 1,242 6/20/2018
3.1.0-alpha0008 1,264 6/19/2018
3.1.0-alpha0007 1,495 6/17/2018
3.1.0-alpha0006 1,234 6/14/2018
3.1.0-alpha0005 1,264 6/14/2018
3.1.0-alpha0004 1,509 5/28/2018
3.0.1 1,966 7/4/2018
3.0.0 2,032 5/24/2018
2.4.0-alpha0027 1,552 5/23/2018
2.4.0-alpha0026 1,460 5/23/2018
2.4.0-alpha0025 1,482 5/22/2018
2.4.0-alpha0024 1,512 5/18/2018
2.4.0-alpha0023 1,529 5/16/2018
2.4.0-alpha0022 1,605 5/16/2018
2.4.0-alpha0021 1,578 5/15/2018
2.4.0-alpha0020 1,644 5/15/2018
2.4.0-alpha0019 1,642 4/20/2018
2.4.0-alpha0017 1,467 4/19/2018
2.4.0-alpha0016 1,554 4/13/2018
2.4.0-alpha0015 1,504 4/3/2018
2.4.0-alpha0014 1,318 4/1/2018
2.4.0-alpha0013 1,914 3/30/2018
2.4.0-alpha0009 1,275 2/20/2018
2.4.0-alpha0002 1,385 12/1/2017
2.3.3 2,035 4/24/2018
2.3.1 1,747 2/20/2018
2.3.0 2,033 2/19/2018
2.3.0-alpha0006 1,298 11/21/2017
2.3.0-alpha0005 1,326 11/13/2017
2.3.0-alpha0002 1,332 9/18/2017
2.2.0 1,788 11/13/2017
2.2.0-alpha0009 1,327 9/14/2017
2.2.0-alpha0008 1,317 9/11/2017
2.2.0-alpha0007 1,293 9/10/2017
2.2.0-alpha0006 1,317 8/18/2017
2.2.0-alpha0002 1,295 8/18/2017
2.1.0 1,864 8/18/2017
2.1.0-alpha0022 1,352 8/18/2017
2.1.0-alpha0020 1,334 7/24/2017
2.1.0-alpha0018 1,354 7/13/2017
2.1.0-alpha0016 1,398 7/12/2017
2.1.0-alpha0011 1,290 7/11/2017
2.1.0-alpha0005 1,369 7/3/2017
2.1.0-alpha0002 1,343 7/3/2017
2.0.4 1,717 7/24/2017
2.0.4-unstable0013 1,438 6/26/2017
2.0.4-unstable0011 1,425 6/26/2017
2.0.4-unstable0010 1,404 6/11/2017
2.0.4-unstable0009 1,488 6/1/2017
2.0.4-unstable0007 1,420 5/4/2017
2.0.4-unstable0004 1,359 5/1/2017
2.0.4-unstable0003 1,373 5/1/2017
2.0.4-unstable0002 1,384 4/30/2017
2.0.4-unstable0001 1,375 4/27/2017
2.0.4-alpha0038 1,371 7/1/2017
2.0.3-unstable0064 1,408 4/27/2017
2.0.3-unstable0058 1,383 3/28/2017
2.0.3-unstable0057 1,388 3/15/2017
2.0.3-unstable0055 1,433 2/10/2017
2.0.3-unstable0053 1,380 2/9/2017
2.0.3-unstable0052 1,376 2/8/2017
1.1.4.506 1,742 7/6/2017
1.1.3.500 1,810 6/28/2017
1.1.2.497 1,752 6/21/2017
1.1.1.494 1,779 5/30/2017
1.1.0.492 1,728 5/4/2017
1.0.4.483 1,741 4/26/2017
1.0.3.481 1,779 4/4/2017
1.0.2.478 1,771 3/15/2017
1.0.1.475 1,735 2/10/2017
1.0.0.469 1,770 2/8/2017
1.0.0 1,752 6/30/2017
0.63.7.467 1,798 2/7/2017
0.63.6.463 1,760 2/7/2017
0.63.6.460 1,701 2/5/2017
0.63.5.454 1,780 10/17/2016
0.63.4.453 1,777 10/10/2016
0.63.3.452 1,737 9/26/2016
0.63.1.451 1,929 9/19/2016
0.63.1.450 1,807 9/11/2016
0.63.0.448 1,719 8/12/2016
0.62.1.445 1,775 8/8/2016
0.62.0.444 1,801 8/8/2016
0.61.1.443 1,794 8/5/2016
0.61.0.442 2,078 8/2/2016
0.60.1.441 1,960 7/31/2016
0.60.0.440 1,905 7/25/2016
0.59.0.439 1,865 7/18/2016
0.59.0.437 1,809 7/18/2016