EasyNetQ.DI.LightInject 8.0.0-beta96

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.LightInject.
dotnet add package EasyNetQ.DI.LightInject --version 8.0.0-beta96
                    
NuGet\Install-Package EasyNetQ.DI.LightInject -Version 8.0.0-beta96
                    
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-beta96" />
                    
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-beta96" />
                    
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-beta96
                    
#r "nuget: EasyNetQ.DI.LightInject, 8.0.0-beta96"
                    
#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.
#addin nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta96&prerelease
                    
Install EasyNetQ.DI.LightInject as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta96&prerelease
                    
Install EasyNetQ.DI.LightInject 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.

Contributors

Thanks to all the people who already contributed!

<a href="https://github.com/EasyNetQ/EasyNetQ/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=EasyNetQ/EasyNetQ" /> </a>

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. 
.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 108 3/15/2024
8.0.0-beta95 260 10/22/2023
8.0.0-beta94 159 6/18/2023
8.0.0-beta93 162 6/17/2023
8.0.0-beta92 152 6/17/2023
8.0.0-beta91 166 6/11/2023
8.0.0-beta90 151 5/8/2023
8.0.0-beta9 176 3/21/2023
8.0.0-beta8 178 2/20/2023
8.0.0-beta6 182 1/29/2023
8.0.0-beta5 190 1/20/2023
8.0.0-beta4 168 1/5/2023
8.0.0-beta3 187 12/29/2022
8.0.0-beta2 185 12/16/2022
8.0.0-beta10 189 3/21/2023
8.0.0-beta1 166 12/15/2022
8.0.0-alpha9 194 12/14/2022
8.0.0-alpha8 189 11/30/2022
8.0.0-alpha7 199 11/12/2022
8.0.0-alpha6 194 10/29/2022
8.0.0-alpha5 191 10/5/2022
8.0.0-alpha4 221 10/1/2022
8.0.0-alpha3 251 9/26/2022
8.0.0-alpha2 246 9/21/2022
8.0.0-alpha1 260 9/19/2022
7.8.0 1,461 12/16/2023
7.7.0 174 11/19/2023
7.6.0 196 10/12/2023
7.5.5 1,661 7/20/2023
7.5.4 212 7/19/2023
7.5.3 222 6/15/2023
7.5.2 240 5/14/2023
7.5.1 281 5/4/2023
7.5.0 398 3/25/2023
7.4.3 751 2/3/2023
7.4.1 426 1/31/2023
7.4.0 401 1/29/2023
7.3.12 411 1/23/2023
7.3.11 406 1/22/2023
7.3.10 420 1/19/2023
7.3.9 384 1/17/2023
7.3.8 445 1/4/2023
7.3.7 427 12/22/2022
7.3.6 571 12/19/2022
7.3.5 472 11/30/2022
7.3.4 446 11/30/2022
7.3.3 569 11/24/2022
7.3.2 640 11/15/2022
7.3.1 512 11/12/2022
7.3.0 646 10/29/2022
7.3.0-alpha3 182 10/15/2022
7.2.1 740 10/9/2022
7.2.1-alpha1 175 10/6/2022
7.2.0 793 9/17/2022
7.2.0-alpha1 252 9/15/2022
7.1.1-alpha1 271 9/14/2022
7.1.0 691 9/13/2022
7.0.4 673 9/7/2022
7.0.3 599 9/5/2022
7.0.3-alpha1 183 9/5/2022
7.0.2 583 9/5/2022
7.0.1 589 8/27/2022
7.0.0 727 7/23/2022
7.0.0-rc5 208 6/28/2022
7.0.0-rc4 189 6/27/2022
7.0.0-rc3 222 6/20/2022
7.0.0-rc2 208 6/9/2022
7.0.0-rc1 203 6/9/2022
7.0.0-beta9 201 6/8/2022
7.0.0-beta7 191 6/5/2022
7.0.0-beta6 215 5/24/2022
7.0.0-beta5 267 11/18/2021
7.0.0-beta4 266 11/9/2021
7.0.0-beta3 327 11/6/2021
7.0.0-beta2 319 9/29/2021
7.0.0-beta1 293 9/13/2021
7.0.0-alpha9 267 8/25/2021
7.0.0-alpha8 255 8/25/2021
7.0.0-alpha7 283 8/25/2021
7.0.0-alpha6 278 8/16/2021
7.0.0-alpha5 286 8/16/2021
7.0.0-alpha4 529 1/20/2021
7.0.0-alpha3 559 12/31/2020
7.0.0-alpha2 532 12/28/2020
6.5.2 633 6/20/2022
6.4.1 618 5/22/2022
6.4.0-alpha0096 556 12/6/2020
6.4.0-alpha0095 550 12/6/2020
6.4.0-alpha0094 591 12/6/2020
6.4.0-alpha.99 222 12/26/2020
6.4.0-alpha.97 237 12/9/2020
6.3.1 967 11/28/2020
6.3.0 920 11/22/2020
6.2.0 986 11/15/2020
6.1.0 946 11/10/2020
6.0.3 886 11/9/2020
6.0.2 933 11/6/2020
6.0.1 966 11/1/2020
5.6.0 943 10/10/2020
5.5.0 964 10/5/2020
5.4.1 1,018 10/4/2020
5.4.0 942 10/1/2020
5.3.0-alpha0079 622 6/16/2020
5.3.0-alpha0078 620 6/15/2020
5.3.0-alpha0077 625 6/15/2020
5.3.0-alpha0076 640 6/15/2020
5.3.0-alpha0075 618 6/14/2020
5.3.0-alpha0074 593 6/12/2020
5.3.0-alpha0073 627 6/12/2020
5.3.0-alpha0072 612 6/11/2020
5.3.0-alpha0070 670 6/7/2020
5.2.2 916 9/4/2020
5.2.1 930 9/3/2020
5.2.0 972 6/7/2020
5.2.0-alpha0073 612 5/26/2020
5.2.0-alpha0072 678 5/25/2020
5.2.0-alpha0071 654 5/25/2020
5.2.0-alpha0070 660 5/24/2020
5.2.0-alpha0069 696 5/24/2020
5.2.0-alpha0066 679 5/21/2020
5.2.0-alpha0065 633 5/20/2020
5.2.0-alpha0064 661 5/17/2020
5.2.0-alpha0057 619 5/10/2020
5.2.0-alpha0056 613 5/8/2020
5.1.2 953 5/24/2020
5.1.1 938 5/10/2020
5.1.0 944 5/7/2020
5.1.0-alpha0055 637 5/3/2020
5.1.0-alpha0054 680 5/3/2020
5.1.0-alpha0053 641 4/30/2020
5.0.5 954 5/4/2020
5.0.4 962 5/3/2020
5.0.3 966 5/2/2020
5.0.2 972 5/2/2020
5.0.1 951 5/2/2020
5.0.0 955 4/29/2020
4.1.0-alpha0014 645 4/29/2020
4.1.0-alpha0013 638 4/24/2020
4.1.0-alpha0005 638 4/20/2020
4.1.0-alpha0004 638 4/18/2020
4.1.0-alpha0001 626 4/17/2020
4.0.9 953 4/29/2020
4.0.8 956 4/28/2020
4.0.7 936 4/27/2020
4.0.6 935 4/24/2020
4.0.5 921 4/22/2020
4.0.4 931 4/21/2020
4.0.3 951 4/20/2020
4.0.2 969 4/20/2020
4.0.1 968 4/20/2020
4.0.0 921 4/18/2020
3.8.0 971 4/17/2020
3.8.0-alpha0048 660 2/28/2020
3.8.0-alpha0042 682 2/13/2020
3.8.0-alpha0041 673 1/8/2020
3.8.0-alpha0040 688 9/26/2019
3.8.0-alpha0039 660 9/25/2019
3.7.1 1,043 9/25/2019
3.7.0 1,011 9/23/2019
3.7.0-alpha0038 717 8/3/2019
3.7.0-alpha0037 721 8/1/2019
3.6.0 1,121 7/17/2019
3.6.0-alpha0036 719 6/4/2019
3.6.0-alpha0035 779 6/2/2019
3.6.0-alpha0034 760 6/2/2019
3.6.0-alpha0033 748 6/2/2019
3.6.0-alpha0031 730 5/4/2019
3.5.2 1,094 7/11/2019
3.5.1 1,182 6/2/2019
3.5.0 1,164 5/2/2019
3.5.0-alpha0036 738 4/10/2019
3.5.0-alpha0031 745 3/25/2019
3.5.0-alpha0030 744 3/21/2019
3.5.0-alpha0029 728 3/19/2019
3.5.0-alpha0027 747 3/18/2019
3.5.0-alpha0026 758 3/18/2019
3.5.0-alpha0025 745 3/17/2019
3.5.0-alpha0024 726 3/16/2019
3.5.0-alpha0021 755 3/15/2019
3.5.0-alpha0020 718 3/14/2019
3.5.0-alpha0019 766 3/14/2019
3.5.0-alpha0018 776 3/14/2019
3.5.0-alpha0013 740 3/14/2019
3.4.5 1,152 3/21/2019
3.4.4 1,159 3/16/2019
3.4.3 1,154 3/14/2019
3.4.2 1,143 3/13/2019
3.4.1 1,160 3/12/2019
3.4.0 1,256 2/19/2019
3.4.0-alpha0022 886 1/27/2019
3.4.0-alpha0021 811 1/25/2019
3.4.0-alpha0020 905 12/21/2018
3.4.0-alpha0019 869 12/6/2018
3.4.0-alpha0018 860 11/21/2018
3.4.0-alpha0017 849 11/20/2018
3.4.0-alpha0016 888 11/5/2018
3.4.0-alpha0015 879 11/2/2018
3.4.0-alpha0011 951 11/1/2018
3.4.0-alpha0010 980 10/3/2018
3.4.0-alpha0009 978 9/16/2018
3.4.0-alpha0008 969 9/1/2018
3.4.0-alpha0007 918 8/29/2018
3.4.0-alpha0006 900 8/28/2018
3.4.0-alpha0005 990 8/28/2018
3.4.0-alpha0004 978 8/23/2018
3.4.0-alpha0003 985 8/22/2018
3.4.0-alpha0002 1,034 8/10/2018
3.4.0-alpha0001 1,057 7/30/2018
3.3.9 1,216 1/25/2019
3.3.8 1,301 1/18/2019
3.3.7 1,322 1/5/2019
3.3.6 1,263 12/19/2018
3.3.5 1,378 11/21/2018
3.3.4 1,351 11/20/2018
3.3.3 1,281 11/11/2018
3.3.2 1,342 10/12/2018
3.3.1 1,375 8/28/2018
3.3.0 1,486 7/18/2018
3.3.0-alpha0007 998 7/18/2018
3.3.0-alpha0006 1,143 7/17/2018
3.3.0-alpha0005 1,152 7/17/2018
3.3.0-alpha0004 1,017 7/17/2018
3.3.0-alpha0003 1,105 7/15/2018
3.3.0-alpha0001 1,186 7/11/2018
3.2.0 1,494 7/12/2018
3.1.2 1,612 7/11/2018
3.1.1 1,485 7/4/2018
3.1.0 1,553 6/20/2018
3.1.0-alpha0019 1,151 7/4/2018
3.1.0-alpha0017 1,203 7/2/2018
3.1.0-alpha0016 1,007 6/30/2018
3.1.0-alpha0014 1,046 6/26/2018
3.1.0-alpha0011 1,050 6/23/2018
3.1.0-alpha0010 1,123 6/20/2018
3.1.0-alpha0009 1,011 6/20/2018
3.1.0-alpha0008 1,026 6/19/2018
3.1.0-alpha0007 1,168 6/17/2018
3.1.0-alpha0006 1,008 6/14/2018
3.1.0-alpha0005 1,011 6/14/2018
3.1.0-alpha0004 1,161 5/28/2018
3.0.1 1,598 7/4/2018
3.0.0 1,671 5/24/2018
2.4.0-alpha0027 1,233 5/23/2018
2.4.0-alpha0026 1,135 5/23/2018
2.4.0-alpha0025 1,146 5/22/2018
2.4.0-alpha0024 1,168 5/18/2018
2.4.0-alpha0023 1,184 5/16/2018
2.4.0-alpha0022 1,271 5/16/2018
2.4.0-alpha0021 1,254 5/15/2018
2.4.0-alpha0020 1,297 5/15/2018
2.4.0-alpha0019 1,310 4/20/2018
2.4.0-alpha0017 1,135 4/19/2018
2.4.0-alpha0016 1,212 4/13/2018
2.4.0-alpha0015 1,179 4/3/2018
2.4.0-alpha0014 1,064 4/1/2018
2.4.0-alpha0013 1,520 3/30/2018
2.4.0-alpha0009 1,036 2/20/2018
2.4.0-alpha0002 1,171 12/1/2017
2.3.3 1,669 4/24/2018
2.3.1 1,521 2/20/2018
2.3.0 1,688 2/19/2018
2.3.0-alpha0006 1,053 11/21/2017
2.3.0-alpha0005 1,077 11/13/2017
2.3.0-alpha0002 1,078 9/18/2017
2.2.0 1,546 11/13/2017
2.2.0-alpha0009 1,075 9/14/2017
2.2.0-alpha0008 1,065 9/11/2017
2.2.0-alpha0007 1,052 9/10/2017
2.2.0-alpha0006 1,081 8/18/2017
2.2.0-alpha0002 1,058 8/18/2017
2.1.0 1,562 8/18/2017
2.1.0-alpha0022 1,084 8/18/2017
2.1.0-alpha0020 1,101 7/24/2017
2.1.0-alpha0018 1,105 7/13/2017
2.1.0-alpha0016 1,183 7/12/2017
2.1.0-alpha0011 1,054 7/11/2017
2.1.0-alpha0005 1,132 7/3/2017
2.1.0-alpha0002 1,121 7/3/2017
2.0.4 1,481 7/24/2017
2.0.4-unstable0013 1,206 6/26/2017
2.0.4-unstable0011 1,172 6/26/2017
2.0.4-unstable0010 1,146 6/11/2017
2.0.4-unstable0009 1,225 6/1/2017
2.0.4-unstable0007 1,156 5/4/2017
2.0.4-unstable0004 1,138 5/1/2017
2.0.4-unstable0003 1,146 5/1/2017
2.0.4-unstable0002 1,163 4/30/2017
2.0.4-unstable0001 1,132 4/27/2017
2.0.4-alpha0038 1,108 7/1/2017
2.0.3-unstable0064 1,159 4/27/2017
2.0.3-unstable0058 1,146 3/28/2017
2.0.3-unstable0057 1,146 3/15/2017
2.0.3-unstable0055 1,190 2/10/2017
2.0.3-unstable0053 1,135 2/9/2017
2.0.3-unstable0052 1,109 2/8/2017
1.1.4.506 1,486 7/6/2017
1.1.3.500 1,562 6/28/2017
1.1.2.497 1,499 6/21/2017
1.1.1.494 1,532 5/30/2017
1.1.0.492 1,495 5/4/2017
1.0.4.483 1,492 4/26/2017
1.0.3.481 1,525 4/4/2017
1.0.2.478 1,533 3/15/2017
1.0.1.475 1,493 2/10/2017
1.0.0.469 1,533 2/8/2017
1.0.0 1,493 6/30/2017
0.63.7.467 1,537 2/7/2017
0.63.6.463 1,505 2/7/2017
0.63.6.460 1,443 2/5/2017
0.63.5.454 1,516 10/17/2016
0.63.4.453 1,538 10/10/2016
0.63.3.452 1,479 9/26/2016
0.63.1.451 1,688 9/19/2016
0.63.1.450 1,560 9/11/2016
0.63.0.448 1,486 8/12/2016
0.62.1.445 1,518 8/8/2016
0.62.0.444 1,542 8/8/2016
0.61.1.443 1,557 8/5/2016
0.61.0.442 1,821 8/2/2016
0.60.1.441 1,699 7/31/2016
0.60.0.440 1,647 7/25/2016
0.59.0.439 1,603 7/18/2016
0.59.0.437 1,569 7/18/2016