EasyNetQ.DI.LightInject 8.0.0-beta8

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-beta8
                    
NuGet\Install-Package EasyNetQ.DI.LightInject -Version 8.0.0-beta8
                    
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-beta8" />
                    
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-beta8" />
                    
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-beta8
                    
#r "nuget: EasyNetQ.DI.LightInject, 8.0.0-beta8"
                    
#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-beta8
                    
#: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-beta8&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta8&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 128 3/15/2024
8.0.0-beta95 279 10/22/2023
8.0.0-beta94 182 6/18/2023
8.0.0-beta93 189 6/17/2023
8.0.0-beta92 178 6/17/2023
8.0.0-beta91 197 6/11/2023
8.0.0-beta90 180 5/8/2023
8.0.0-beta9 212 3/21/2023
8.0.0-beta8 209 2/20/2023
8.0.0-beta6 214 1/29/2023
8.0.0-beta5 221 1/20/2023
8.0.0-beta4 194 1/5/2023
8.0.0-beta3 219 12/29/2022
8.0.0-beta2 214 12/16/2022
8.0.0-beta10 217 3/21/2023
8.0.0-beta1 191 12/15/2022
8.0.0-alpha9 224 12/14/2022
8.0.0-alpha8 224 11/30/2022
8.0.0-alpha7 230 11/12/2022
8.0.0-alpha6 222 10/29/2022
8.0.0-alpha5 216 10/5/2022
8.0.0-alpha4 258 10/1/2022
8.0.0-alpha3 278 9/26/2022
8.0.0-alpha2 279 9/21/2022
8.0.0-alpha1 289 9/19/2022
7.8.0 1,762 12/16/2023
7.7.0 189 11/19/2023
7.6.0 213 10/12/2023
7.5.5 1,741 7/20/2023
7.5.4 234 7/19/2023
7.5.3 249 6/15/2023
7.5.2 275 5/14/2023
7.5.1 308 5/4/2023
7.5.0 427 3/25/2023
7.4.3 778 2/3/2023
7.4.1 454 1/31/2023
7.4.0 436 1/29/2023
7.3.12 442 1/23/2023
7.3.11 434 1/22/2023
7.3.10 450 1/19/2023
7.3.9 414 1/17/2023
7.3.8 470 1/4/2023
7.3.7 453 12/22/2022
7.3.6 600 12/19/2022
7.3.5 502 11/30/2022
7.3.4 477 11/30/2022
7.3.3 597 11/24/2022
7.3.2 664 11/15/2022
7.3.1 542 11/12/2022
7.3.0 672 10/29/2022
7.3.0-alpha3 210 10/15/2022
7.2.1 769 10/9/2022
7.2.1-alpha1 204 10/6/2022
7.2.0 823 9/17/2022
7.2.0-alpha1 278 9/15/2022
7.1.1-alpha1 301 9/14/2022
7.1.0 721 9/13/2022
7.0.4 709 9/7/2022
7.0.3 628 9/5/2022
7.0.3-alpha1 213 9/5/2022
7.0.2 607 9/5/2022
7.0.1 624 8/27/2022
7.0.0 762 7/23/2022
7.0.0-rc5 246 6/28/2022
7.0.0-rc4 223 6/27/2022
7.0.0-rc3 258 6/20/2022
7.0.0-rc2 246 6/9/2022
7.0.0-rc1 246 6/9/2022
7.0.0-beta9 234 6/8/2022
7.0.0-beta7 224 6/5/2022
7.0.0-beta6 245 5/24/2022
7.0.0-beta5 311 11/18/2021
7.0.0-beta4 306 11/9/2021
7.0.0-beta3 365 11/6/2021
7.0.0-beta2 359 9/29/2021
7.0.0-beta1 335 9/13/2021
7.0.0-alpha9 305 8/25/2021
7.0.0-alpha8 295 8/25/2021
7.0.0-alpha7 324 8/25/2021
7.0.0-alpha6 320 8/16/2021
7.0.0-alpha5 328 8/16/2021
7.0.0-alpha4 575 1/20/2021
7.0.0-alpha3 606 12/31/2020
7.0.0-alpha2 577 12/28/2020
6.5.2 673 6/20/2022
6.4.1 651 5/22/2022
6.4.0-alpha0096 607 12/6/2020
6.4.0-alpha0095 597 12/6/2020
6.4.0-alpha0094 642 12/6/2020
6.4.0-alpha.99 270 12/26/2020
6.4.0-alpha.97 287 12/9/2020
6.3.1 1,020 11/28/2020
6.3.0 968 11/22/2020
6.2.0 1,035 11/15/2020
6.1.0 993 11/10/2020
6.0.3 936 11/9/2020
6.0.2 983 11/6/2020
6.0.1 1,015 11/1/2020
5.6.0 996 10/10/2020
5.5.0 1,010 10/5/2020
5.4.1 1,073 10/4/2020
5.4.0 995 10/1/2020
5.3.0-alpha0079 672 6/16/2020
5.3.0-alpha0078 671 6/15/2020
5.3.0-alpha0077 669 6/15/2020
5.3.0-alpha0076 686 6/15/2020
5.3.0-alpha0075 665 6/14/2020
5.3.0-alpha0074 640 6/12/2020
5.3.0-alpha0073 672 6/12/2020
5.3.0-alpha0072 659 6/11/2020
5.3.0-alpha0070 717 6/7/2020
5.2.2 968 9/4/2020
5.2.1 975 9/3/2020
5.2.0 1,022 6/7/2020
5.2.0-alpha0073 664 5/26/2020
5.2.0-alpha0072 736 5/25/2020
5.2.0-alpha0071 704 5/25/2020
5.2.0-alpha0070 714 5/24/2020
5.2.0-alpha0069 745 5/24/2020
5.2.0-alpha0066 730 5/21/2020
5.2.0-alpha0065 684 5/20/2020
5.2.0-alpha0064 714 5/17/2020
5.2.0-alpha0057 674 5/10/2020
5.2.0-alpha0056 674 5/8/2020
5.1.2 1,008 5/24/2020
5.1.1 993 5/10/2020
5.1.0 998 5/7/2020
5.1.0-alpha0055 690 5/3/2020
5.1.0-alpha0054 731 5/3/2020
5.1.0-alpha0053 695 4/30/2020
5.0.5 1,011 5/4/2020
5.0.4 1,013 5/3/2020
5.0.3 1,017 5/2/2020
5.0.2 1,025 5/2/2020
5.0.1 1,007 5/2/2020
5.0.0 1,007 4/29/2020
4.1.0-alpha0014 696 4/29/2020
4.1.0-alpha0013 693 4/24/2020
4.1.0-alpha0005 689 4/20/2020
4.1.0-alpha0004 692 4/18/2020
4.1.0-alpha0001 676 4/17/2020
4.0.9 1,009 4/29/2020
4.0.8 1,014 4/28/2020
4.0.7 993 4/27/2020
4.0.6 990 4/24/2020
4.0.5 972 4/22/2020
4.0.4 986 4/21/2020
4.0.3 1,004 4/20/2020
4.0.2 1,019 4/20/2020
4.0.1 1,022 4/20/2020
4.0.0 974 4/18/2020
3.8.0 1,023 4/17/2020
3.8.0-alpha0048 711 2/28/2020
3.8.0-alpha0042 742 2/13/2020
3.8.0-alpha0041 728 1/8/2020
3.8.0-alpha0040 746 9/26/2019
3.8.0-alpha0039 709 9/25/2019
3.7.1 1,094 9/25/2019
3.7.0 1,072 9/23/2019
3.7.0-alpha0038 774 8/3/2019
3.7.0-alpha0037 779 8/1/2019
3.6.0 1,177 7/17/2019
3.6.0-alpha0036 775 6/4/2019
3.6.0-alpha0035 834 6/2/2019
3.6.0-alpha0034 821 6/2/2019
3.6.0-alpha0033 804 6/2/2019
3.6.0-alpha0031 789 5/4/2019
3.5.2 1,149 7/11/2019
3.5.1 1,241 6/2/2019
3.5.0 1,222 5/2/2019
3.5.0-alpha0036 796 4/10/2019
3.5.0-alpha0031 808 3/25/2019
3.5.0-alpha0030 798 3/21/2019
3.5.0-alpha0029 783 3/19/2019
3.5.0-alpha0027 806 3/18/2019
3.5.0-alpha0026 816 3/18/2019
3.5.0-alpha0025 802 3/17/2019
3.5.0-alpha0024 789 3/16/2019
3.5.0-alpha0021 814 3/15/2019
3.5.0-alpha0020 774 3/14/2019
3.5.0-alpha0019 825 3/14/2019
3.5.0-alpha0018 832 3/14/2019
3.5.0-alpha0013 801 3/14/2019
3.4.5 1,211 3/21/2019
3.4.4 1,219 3/16/2019
3.4.3 1,209 3/14/2019
3.4.2 1,199 3/13/2019
3.4.1 1,218 3/12/2019
3.4.0 1,316 2/19/2019
3.4.0-alpha0022 943 1/27/2019
3.4.0-alpha0021 868 1/25/2019
3.4.0-alpha0020 966 12/21/2018
3.4.0-alpha0019 926 12/6/2018
3.4.0-alpha0018 920 11/21/2018
3.4.0-alpha0017 907 11/20/2018
3.4.0-alpha0016 948 11/5/2018
3.4.0-alpha0015 941 11/2/2018
3.4.0-alpha0011 1,013 11/1/2018
3.4.0-alpha0010 1,043 10/3/2018
3.4.0-alpha0009 1,047 9/16/2018
3.4.0-alpha0008 1,033 9/1/2018
3.4.0-alpha0007 986 8/29/2018
3.4.0-alpha0006 969 8/28/2018
3.4.0-alpha0005 1,057 8/28/2018
3.4.0-alpha0004 1,044 8/23/2018
3.4.0-alpha0003 1,049 8/22/2018
3.4.0-alpha0002 1,104 8/10/2018
3.4.0-alpha0001 1,172 7/30/2018
3.3.9 1,271 1/25/2019
3.3.8 1,362 1/18/2019
3.3.7 1,387 1/5/2019
3.3.6 1,320 12/19/2018
3.3.5 1,437 11/21/2018
3.3.4 1,410 11/20/2018
3.3.3 1,343 11/11/2018
3.3.2 1,404 10/12/2018
3.3.1 1,439 8/28/2018
3.3.0 1,598 7/18/2018
3.3.0-alpha0007 1,114 7/18/2018
3.3.0-alpha0006 1,302 7/17/2018
3.3.0-alpha0005 1,317 7/17/2018
3.3.0-alpha0004 1,127 7/17/2018
3.3.0-alpha0003 1,263 7/15/2018
3.3.0-alpha0001 1,347 7/11/2018
3.2.0 1,607 7/12/2018
3.1.2 1,778 7/11/2018
3.1.1 1,601 7/4/2018
3.1.0 1,716 6/20/2018
3.1.0-alpha0019 1,314 7/4/2018
3.1.0-alpha0017 1,364 7/2/2018
3.1.0-alpha0016 1,113 6/30/2018
3.1.0-alpha0014 1,159 6/26/2018
3.1.0-alpha0011 1,161 6/23/2018
3.1.0-alpha0010 1,279 6/20/2018
3.1.0-alpha0009 1,119 6/20/2018
3.1.0-alpha0008 1,138 6/19/2018
3.1.0-alpha0007 1,330 6/17/2018
3.1.0-alpha0006 1,119 6/14/2018
3.1.0-alpha0005 1,125 6/14/2018
3.1.0-alpha0004 1,320 5/28/2018
3.0.1 1,760 7/4/2018
3.0.0 1,834 5/24/2018
2.4.0-alpha0027 1,396 5/23/2018
2.4.0-alpha0026 1,295 5/23/2018
2.4.0-alpha0025 1,311 5/22/2018
2.4.0-alpha0024 1,329 5/18/2018
2.4.0-alpha0023 1,351 5/16/2018
2.4.0-alpha0022 1,430 5/16/2018
2.4.0-alpha0021 1,416 5/15/2018
2.4.0-alpha0020 1,463 5/15/2018
2.4.0-alpha0019 1,472 4/20/2018
2.4.0-alpha0017 1,297 4/19/2018
2.4.0-alpha0016 1,371 4/13/2018
2.4.0-alpha0015 1,339 4/3/2018
2.4.0-alpha0014 1,174 4/1/2018
2.4.0-alpha0013 1,720 3/30/2018
2.4.0-alpha0009 1,151 2/20/2018
2.4.0-alpha0002 1,282 12/1/2017
2.3.3 1,836 4/24/2018
2.3.1 1,636 2/20/2018
2.3.0 1,857 2/19/2018
2.3.0-alpha0006 1,170 11/21/2017
2.3.0-alpha0005 1,186 11/13/2017
2.3.0-alpha0002 1,190 9/18/2017
2.2.0 1,660 11/13/2017
2.2.0-alpha0009 1,185 9/14/2017
2.2.0-alpha0008 1,176 9/11/2017
2.2.0-alpha0007 1,164 9/10/2017
2.2.0-alpha0006 1,191 8/18/2017
2.2.0-alpha0002 1,170 8/18/2017
2.1.0 1,674 8/18/2017
2.1.0-alpha0022 1,200 8/18/2017
2.1.0-alpha0020 1,211 7/24/2017
2.1.0-alpha0018 1,217 7/13/2017
2.1.0-alpha0016 1,290 7/12/2017
2.1.0-alpha0011 1,159 7/11/2017
2.1.0-alpha0005 1,240 7/3/2017
2.1.0-alpha0002 1,231 7/3/2017
2.0.4 1,591 7/24/2017
2.0.4-unstable0013 1,318 6/26/2017
2.0.4-unstable0011 1,282 6/26/2017
2.0.4-unstable0010 1,262 6/11/2017
2.0.4-unstable0009 1,349 6/1/2017
2.0.4-unstable0007 1,268 5/4/2017
2.0.4-unstable0004 1,249 5/1/2017
2.0.4-unstable0003 1,259 5/1/2017
2.0.4-unstable0002 1,273 4/30/2017
2.0.4-unstable0001 1,250 4/27/2017
2.0.4-alpha0038 1,223 7/1/2017
2.0.3-unstable0064 1,277 4/27/2017
2.0.3-unstable0058 1,259 3/28/2017
2.0.3-unstable0057 1,259 3/15/2017
2.0.3-unstable0055 1,300 2/10/2017
2.0.3-unstable0053 1,259 2/9/2017
2.0.3-unstable0052 1,229 2/8/2017
1.1.4.506 1,595 7/6/2017
1.1.3.500 1,671 6/28/2017
1.1.2.497 1,609 6/21/2017
1.1.1.494 1,642 5/30/2017
1.1.0.492 1,607 5/4/2017
1.0.4.483 1,603 4/26/2017
1.0.3.481 1,640 4/4/2017
1.0.2.478 1,650 3/15/2017
1.0.1.475 1,608 2/10/2017
1.0.0.469 1,644 2/8/2017
1.0.0 1,610 6/30/2017
0.63.7.467 1,654 2/7/2017
0.63.6.463 1,619 2/7/2017
0.63.6.460 1,557 2/5/2017
0.63.5.454 1,635 10/17/2016
0.63.4.453 1,652 10/10/2016
0.63.3.452 1,595 9/26/2016
0.63.1.451 1,801 9/19/2016
0.63.1.450 1,674 9/11/2016
0.63.0.448 1,595 8/12/2016
0.62.1.445 1,635 8/8/2016
0.62.0.444 1,654 8/8/2016
0.61.1.443 1,669 8/5/2016
0.61.0.442 1,939 8/2/2016
0.60.1.441 1,823 7/31/2016
0.60.0.440 1,765 7/25/2016
0.59.0.439 1,722 7/18/2016
0.59.0.437 1,680 7/18/2016