EasyNetQ.DI.LightInject 8.0.0-beta96

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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.
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.
// Install EasyNetQ.DI.LightInject as a Cake Addin
#addin nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta96&prerelease

// Install EasyNetQ.DI.LightInject as a Cake Tool
#tool nuget:?package=EasyNetQ.DI.LightInject&version=8.0.0-beta96&prerelease

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. 
.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 64 3/15/2024
8.0.0-beta95 233 10/22/2023
8.0.0-beta94 128 6/18/2023
8.0.0-beta93 127 6/17/2023
8.0.0-beta92 119 6/17/2023
8.0.0-beta91 134 6/11/2023
8.0.0-beta90 115 5/8/2023
8.0.0-beta9 149 3/21/2023
8.0.0-beta8 144 2/20/2023
8.0.0-beta6 149 1/29/2023
8.0.0-beta5 159 1/20/2023
8.0.0-beta4 138 1/5/2023
8.0.0-beta3 153 12/29/2022
8.0.0-beta2 150 12/16/2022
8.0.0-beta10 159 3/21/2023
8.0.0-beta1 128 12/15/2022
8.0.0-alpha9 157 12/14/2022
8.0.0-alpha8 152 11/30/2022
8.0.0-alpha7 167 11/12/2022
8.0.0-alpha6 157 10/29/2022
8.0.0-alpha5 154 10/5/2022
8.0.0-alpha4 184 10/1/2022
8.0.0-alpha3 215 9/26/2022
8.0.0-alpha2 207 9/21/2022
8.0.0-alpha1 217 9/19/2022
7.8.0 311 12/16/2023
7.7.0 140 11/19/2023
7.6.0 161 10/12/2023
7.5.5 1,027 7/20/2023
7.5.4 178 7/19/2023
7.5.3 183 6/15/2023
7.5.2 205 5/14/2023
7.5.1 245 5/4/2023
7.5.0 365 3/25/2023
7.4.3 711 2/3/2023
7.4.1 390 1/31/2023
7.4.0 364 1/29/2023
7.3.12 375 1/23/2023
7.3.11 372 1/22/2023
7.3.10 377 1/19/2023
7.3.9 350 1/17/2023
7.3.8 406 1/4/2023
7.3.7 393 12/22/2022
7.3.6 533 12/19/2022
7.3.5 433 11/30/2022
7.3.4 406 11/30/2022
7.3.3 540 11/24/2022
7.3.2 593 11/15/2022
7.3.1 470 11/12/2022
7.3.0 610 10/29/2022
7.3.0-alpha3 150 10/15/2022
7.2.1 698 10/9/2022
7.2.1-alpha1 151 10/6/2022
7.2.0 749 9/17/2022
7.2.0-alpha1 218 9/15/2022
7.1.1-alpha1 232 9/14/2022
7.1.0 650 9/13/2022
7.0.4 630 9/7/2022
7.0.3 559 9/5/2022
7.0.3-alpha1 142 9/5/2022
7.0.2 539 9/5/2022
7.0.1 548 8/27/2022
7.0.0 683 7/23/2022
7.0.0-rc5 174 6/28/2022
7.0.0-rc4 154 6/27/2022
7.0.0-rc3 180 6/20/2022
7.0.0-rc2 176 6/9/2022
7.0.0-rc1 169 6/9/2022
7.0.0-beta9 175 6/8/2022
7.0.0-beta7 157 6/5/2022
7.0.0-beta6 176 5/24/2022
7.0.0-beta5 227 11/18/2021
7.0.0-beta4 225 11/9/2021
7.0.0-beta3 286 11/6/2021
7.0.0-beta2 281 9/29/2021
7.0.0-beta1 258 9/13/2021
7.0.0-alpha9 229 8/25/2021
7.0.0-alpha8 218 8/25/2021
7.0.0-alpha7 241 8/25/2021
7.0.0-alpha6 234 8/16/2021
7.0.0-alpha5 243 8/16/2021
7.0.0-alpha4 496 1/20/2021
7.0.0-alpha3 514 12/31/2020
7.0.0-alpha2 482 12/28/2020
6.5.2 593 6/20/2022
6.4.1 575 5/22/2022
6.4.0-alpha0096 514 12/6/2020
6.4.0-alpha0095 504 12/6/2020
6.4.0-alpha0094 547 12/6/2020
6.4.0-alpha.99 186 12/26/2020
6.4.0-alpha.97 203 12/9/2020
6.3.1 914 11/28/2020
6.3.0 866 11/22/2020
6.2.0 932 11/15/2020
6.1.0 882 11/10/2020
6.0.3 834 11/9/2020
6.0.2 881 11/6/2020
6.0.1 914 11/1/2020
5.6.0 886 10/10/2020
5.5.0 911 10/5/2020
5.4.1 969 10/4/2020
5.4.0 888 10/1/2020
5.3.0-alpha0079 576 6/16/2020
5.3.0-alpha0078 570 6/15/2020
5.3.0-alpha0077 581 6/15/2020
5.3.0-alpha0076 594 6/15/2020
5.3.0-alpha0075 572 6/14/2020
5.3.0-alpha0074 547 6/12/2020
5.3.0-alpha0073 580 6/12/2020
5.3.0-alpha0072 564 6/11/2020
5.3.0-alpha0070 628 6/7/2020
5.2.2 864 9/4/2020
5.2.1 882 9/3/2020
5.2.0 916 6/7/2020
5.2.0-alpha0073 566 5/26/2020
5.2.0-alpha0072 635 5/25/2020
5.2.0-alpha0071 604 5/25/2020
5.2.0-alpha0070 612 5/24/2020
5.2.0-alpha0069 653 5/24/2020
5.2.0-alpha0066 624 5/21/2020
5.2.0-alpha0065 585 5/20/2020
5.2.0-alpha0064 612 5/17/2020
5.2.0-alpha0057 573 5/10/2020
5.2.0-alpha0056 567 5/8/2020
5.1.2 903 5/24/2020
5.1.1 885 5/10/2020
5.1.0 895 5/7/2020
5.1.0-alpha0055 587 5/3/2020
5.1.0-alpha0054 636 5/3/2020
5.1.0-alpha0053 594 4/30/2020
5.0.5 899 5/4/2020
5.0.4 912 5/3/2020
5.0.3 914 5/2/2020
5.0.2 919 5/2/2020
5.0.1 897 5/2/2020
5.0.0 902 4/29/2020
4.1.0-alpha0014 599 4/29/2020
4.1.0-alpha0013 594 4/24/2020
4.1.0-alpha0005 589 4/20/2020
4.1.0-alpha0004 594 4/18/2020
4.1.0-alpha0001 581 4/17/2020
4.0.9 897 4/29/2020
4.0.8 897 4/28/2020
4.0.7 881 4/27/2020
4.0.6 884 4/24/2020
4.0.5 869 4/22/2020
4.0.4 875 4/21/2020
4.0.3 896 4/20/2020
4.0.2 913 4/20/2020
4.0.1 928 4/20/2020
4.0.0 872 4/18/2020
3.8.0 921 4/17/2020
3.8.0-alpha0048 611 2/28/2020
3.8.0-alpha0042 636 2/13/2020
3.8.0-alpha0041 630 1/8/2020
3.8.0-alpha0040 643 9/26/2019
3.8.0-alpha0039 616 9/25/2019
3.7.1 990 9/25/2019
3.7.0 957 9/23/2019
3.7.0-alpha0038 672 8/3/2019
3.7.0-alpha0037 662 8/1/2019
3.6.0 1,062 7/17/2019
3.6.0-alpha0036 675 6/4/2019
3.6.0-alpha0035 733 6/2/2019
3.6.0-alpha0034 705 6/2/2019
3.6.0-alpha0033 713 6/2/2019
3.6.0-alpha0031 693 5/4/2019
3.5.2 1,041 7/11/2019
3.5.1 1,124 6/2/2019
3.5.0 1,108 5/2/2019
3.5.0-alpha0036 688 4/10/2019
3.5.0-alpha0031 691 3/25/2019
3.5.0-alpha0030 690 3/21/2019
3.5.0-alpha0029 691 3/19/2019
3.5.0-alpha0027 700 3/18/2019
3.5.0-alpha0026 712 3/18/2019
3.5.0-alpha0025 689 3/17/2019
3.5.0-alpha0024 675 3/16/2019
3.5.0-alpha0021 705 3/15/2019
3.5.0-alpha0020 671 3/14/2019
3.5.0-alpha0019 708 3/14/2019
3.5.0-alpha0018 719 3/14/2019
3.5.0-alpha0013 689 3/14/2019
3.4.5 1,090 3/21/2019
3.4.4 1,103 3/16/2019
3.4.3 1,099 3/14/2019
3.4.2 1,085 3/13/2019
3.4.1 1,092 3/12/2019
3.4.0 1,195 2/19/2019
3.4.0-alpha0022 824 1/27/2019
3.4.0-alpha0021 771 1/25/2019
3.4.0-alpha0020 847 12/21/2018
3.4.0-alpha0019 805 12/6/2018
3.4.0-alpha0018 801 11/21/2018
3.4.0-alpha0017 778 11/20/2018
3.4.0-alpha0016 827 11/5/2018
3.4.0-alpha0015 821 11/2/2018
3.4.0-alpha0011 885 11/1/2018
3.4.0-alpha0010 894 10/3/2018
3.4.0-alpha0009 922 9/16/2018
3.4.0-alpha0008 899 9/1/2018
3.4.0-alpha0007 854 8/29/2018
3.4.0-alpha0006 847 8/28/2018
3.4.0-alpha0005 916 8/28/2018
3.4.0-alpha0004 902 8/23/2018
3.4.0-alpha0003 920 8/22/2018
3.4.0-alpha0002 959 8/10/2018
3.4.0-alpha0001 970 7/30/2018
3.3.9 1,162 1/25/2019
3.3.8 1,246 1/18/2019
3.3.7 1,268 1/5/2019
3.3.6 1,207 12/19/2018
3.3.5 1,309 11/21/2018
3.3.4 1,285 11/20/2018
3.3.3 1,199 11/11/2018
3.3.2 1,266 10/12/2018
3.3.1 1,300 8/28/2018
3.3.0 1,389 7/18/2018
3.3.0-alpha0007 906 7/18/2018
3.3.0-alpha0006 1,019 7/17/2018
3.3.0-alpha0005 1,027 7/17/2018
3.3.0-alpha0004 928 7/17/2018
3.3.0-alpha0003 982 7/15/2018
3.3.0-alpha0001 1,059 7/11/2018
3.2.0 1,388 7/12/2018
3.1.2 1,485 7/11/2018
3.1.1 1,378 7/4/2018
3.1.0 1,420 6/20/2018
3.1.0-alpha0019 1,030 7/4/2018
3.1.0-alpha0017 1,083 7/2/2018
3.1.0-alpha0016 919 6/30/2018
3.1.0-alpha0014 956 6/26/2018
3.1.0-alpha0011 960 6/23/2018
3.1.0-alpha0010 1,004 6/20/2018
3.1.0-alpha0009 925 6/20/2018
3.1.0-alpha0008 936 6/19/2018
3.1.0-alpha0007 1,047 6/17/2018
3.1.0-alpha0006 929 6/14/2018
3.1.0-alpha0005 930 6/14/2018
3.1.0-alpha0004 1,038 5/28/2018
3.0.1 1,451 7/4/2018
3.0.0 1,544 5/24/2018
2.4.0-alpha0027 1,121 5/23/2018
2.4.0-alpha0026 1,006 5/23/2018
2.4.0-alpha0025 1,020 5/22/2018
2.4.0-alpha0024 1,043 5/18/2018
2.4.0-alpha0023 1,045 5/16/2018
2.4.0-alpha0022 1,143 5/16/2018
2.4.0-alpha0021 1,130 5/15/2018
2.4.0-alpha0020 1,178 5/15/2018
2.4.0-alpha0019 1,184 4/20/2018
2.4.0-alpha0017 1,004 4/19/2018
2.4.0-alpha0016 1,082 4/13/2018
2.4.0-alpha0015 1,042 4/3/2018
2.4.0-alpha0014 968 4/1/2018
2.4.0-alpha0013 1,344 3/30/2018
2.4.0-alpha0009 939 2/20/2018
2.4.0-alpha0002 1,067 12/1/2017
2.3.3 1,519 4/24/2018
2.3.1 1,420 2/20/2018
2.3.0 1,542 2/19/2018
2.3.0-alpha0006 954 11/21/2017
2.3.0-alpha0005 977 11/13/2017
2.3.0-alpha0002 970 9/18/2017
2.2.0 1,444 11/13/2017
2.2.0-alpha0009 967 9/14/2017
2.2.0-alpha0008 953 9/11/2017
2.2.0-alpha0007 953 9/10/2017
2.2.0-alpha0006 981 8/18/2017
2.2.0-alpha0002 962 8/18/2017
2.1.0 1,458 8/18/2017
2.1.0-alpha0022 998 8/18/2017
2.1.0-alpha0020 992 7/24/2017
2.1.0-alpha0018 1,011 7/13/2017
2.1.0-alpha0016 1,070 7/12/2017
2.1.0-alpha0011 953 7/11/2017
2.1.0-alpha0005 1,019 7/3/2017
2.1.0-alpha0002 1,022 7/3/2017
2.0.4 1,389 7/24/2017
2.0.4-unstable0013 1,110 6/26/2017
2.0.4-unstable0011 1,075 6/26/2017
2.0.4-unstable0010 1,042 6/11/2017
2.0.4-unstable0009 1,127 6/1/2017
2.0.4-unstable0007 1,061 5/4/2017
2.0.4-unstable0004 1,051 5/1/2017
2.0.4-unstable0003 1,050 5/1/2017
2.0.4-unstable0002 1,065 4/30/2017
2.0.4-unstable0001 1,033 4/27/2017
2.0.4-alpha0038 1,002 7/1/2017
2.0.3-unstable0064 1,061 4/27/2017
2.0.3-unstable0058 1,055 3/28/2017
2.0.3-unstable0057 1,043 3/15/2017
2.0.3-unstable0055 1,089 2/10/2017
2.0.3-unstable0053 1,034 2/9/2017
2.0.3-unstable0052 1,013 2/8/2017
1.1.4.506 1,381 7/6/2017
1.1.3.500 1,453 6/28/2017
1.1.2.497 1,394 6/21/2017
1.1.1.494 1,421 5/30/2017
1.1.0.492 1,391 5/4/2017
1.0.4.483 1,388 4/26/2017
1.0.3.481 1,432 4/4/2017
1.0.2.478 1,430 3/15/2017
1.0.1.475 1,390 2/10/2017
1.0.0.469 1,428 2/8/2017
1.0.0 1,401 6/30/2017
0.63.7.467 1,427 2/7/2017
0.63.6.463 1,398 2/7/2017
0.63.6.460 1,340 2/5/2017
0.63.5.454 1,410 10/17/2016
0.63.4.453 1,435 10/10/2016
0.63.3.452 1,377 9/26/2016
0.63.1.451 1,585 9/19/2016
0.63.1.450 1,457 9/11/2016
0.63.0.448 1,381 8/12/2016
0.62.1.445 1,408 8/8/2016
0.62.0.444 1,434 8/8/2016
0.61.1.443 1,449 8/5/2016
0.61.0.442 1,714 8/2/2016
0.60.1.441 1,587 7/31/2016
0.60.0.440 1,548 7/25/2016
0.59.0.439 1,491 7/18/2016
0.59.0.437 1,459 7/18/2016