EasyNetQ.DI.Microsoft 8.0.0-beta96

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

// Install EasyNetQ.DI.Microsoft as a Cake Tool
#tool nuget:?package=EasyNetQ.DI.Microsoft&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 (14)

Showing the top 5 NuGet packages that depend on EasyNetQ.DI.Microsoft:

Package Downloads
NanoCore

The project is inspired by years of tedious repetitions, continuously re-writing similar code-snippets and libraries, to handle common functionality, not related to the business domain, such as logging, data persistence, message queuing, documentation, validation and similar.

Es.Framework.MQ.Rabbitmq

EsWork Libraries

HwApp.EasyNetQ

HwApp EasyNetQ integration

TinyFx.Extensions.RabbitMQ

EasyNetQ封装

OneFx.RabbitMQ

OneFx框架对消息队列的支持

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-beta96 1,370 3/15/2024
8.0.0-beta95 644 10/22/2023
8.0.0-beta94 3,649 6/18/2023
8.0.0-beta93 143 6/17/2023
8.0.0-beta92 135 6/17/2023
8.0.0-beta91 133 6/11/2023
8.0.0-beta90 230 5/8/2023
8.0.0-beta9 272 3/21/2023
8.0.0-beta8 204 2/20/2023
8.0.0-beta6 156 1/29/2023
8.0.0-beta5 159 1/20/2023
8.0.0-beta4 165 1/5/2023
8.0.0-beta3 133 12/29/2022
8.0.0-beta2 176 12/16/2022
8.0.0-beta10 127 3/21/2023
8.0.0-beta1 147 12/15/2022
8.0.0-alpha9 153 12/14/2022
8.0.0-alpha8 155 11/30/2022
8.0.0-alpha7 242 11/12/2022
8.0.0-alpha6 176 10/29/2022
8.0.0-alpha5 164 10/5/2022
8.0.0-alpha4 184 10/1/2022
8.0.0-alpha3 213 9/26/2022
8.0.0-alpha2 185 9/21/2022
8.0.0-alpha1 209 9/19/2022
7.8.0 295,486 12/16/2023
7.7.0 55,206 11/19/2023
7.6.0 27,267 10/12/2023
7.5.5 115,878 7/20/2023
7.5.4 627 7/19/2023
7.5.3 52,476 6/15/2023
7.5.2 63,617 5/14/2023
7.5.1 19,482 5/4/2023
7.5.0 39,638 3/25/2023
7.4.3 100,033 2/3/2023
7.4.1 950 1/31/2023
7.4.0 6,113 1/29/2023
7.3.12 9,640 1/23/2023
7.3.11 1,170 1/22/2023
7.3.10 3,178 1/19/2023
7.3.9 20,354 1/17/2023
7.3.8 19,953 1/4/2023
7.3.7 11,643 12/22/2022
7.3.6 4,073 12/19/2022
7.3.5 27,785 11/30/2022
7.3.4 591 11/30/2022
7.3.3 6,918 11/24/2022
7.3.2 35,460 11/15/2022
7.3.1 1,172 11/12/2022
7.3.0 15,069 10/29/2022
7.3.0-alpha3 147 10/15/2022
7.3.0-alpha2 154 10/15/2022
7.2.1 15,914 10/9/2022
7.2.1-alpha1 130 10/6/2022
7.2.0 20,948 9/17/2022
7.2.0-alpha1 216 9/15/2022
7.1.1-alpha1 209 9/14/2022
7.1.0 4,609 9/13/2022
7.0.4 8,154 9/7/2022
7.0.3 897 9/5/2022
7.0.3-alpha1 153 9/5/2022
7.0.2 627 9/5/2022
7.0.1 32,063 8/27/2022
7.0.0 43,390 7/23/2022
7.0.0-rc5 1,261 6/28/2022
7.0.0-rc4 155 6/27/2022
7.0.0-rc3 819 6/20/2022
7.0.0-rc2 198 6/9/2022
7.0.0-rc1 160 6/9/2022
7.0.0-beta9 173 6/8/2022
7.0.0-beta7 184 6/5/2022
7.0.0-beta6 171 5/24/2022
7.0.0-beta5 1,937 11/18/2021
7.0.0-beta4 237 11/9/2021
7.0.0-beta3 296 11/6/2021
7.0.0-beta2 357 9/29/2021
7.0.0-beta1 274 9/13/2021
7.0.0-alpha9 282 8/25/2021
7.0.0-alpha8 230 8/25/2021
7.0.0-alpha7 226 8/25/2021
7.0.0-alpha6 234 8/16/2021
7.0.0-alpha5 239 8/16/2021
7.0.0-alpha4 641 1/20/2021
7.0.0-alpha3 430 12/31/2020
7.0.0-alpha2 391 12/28/2020
6.5.2 95,475 6/20/2022
6.4.1 29,115 5/22/2022
6.4.0-alpha0096 657 12/6/2020
6.4.0-alpha0095 438 12/6/2020
6.4.0-alpha0094 462 12/6/2020
6.4.0-alpha.99 276 12/26/2020
6.4.0-alpha.97 252 12/9/2020
6.3.1 509,829 11/28/2020
6.3.0 5,786 11/22/2020
6.2.0 2,719 11/15/2020
6.1.0 1,352 11/10/2020
6.0.3 911 11/9/2020
6.0.2 904 11/6/2020
6.0.1 1,300 11/1/2020
5.6.0 94,631 10/10/2020
5.5.0 10,103 10/5/2020
5.4.1 787 10/4/2020
5.4.0 1,273 10/1/2020
5.3.0-alpha0079 8,671 6/16/2020
5.3.0-alpha0078 483 6/15/2020
5.3.0-alpha0077 477 6/15/2020
5.3.0-alpha0076 504 6/15/2020
5.3.0-alpha0075 482 6/14/2020
5.3.0-alpha0074 476 6/12/2020
5.3.0-alpha0073 482 6/12/2020
5.3.0-alpha0072 502 6/11/2020
5.3.0-alpha0070 859 6/7/2020
5.2.2 30,415 9/4/2020
5.2.1 769 9/3/2020
5.2.0 103,648 6/7/2020
5.2.0-alpha0073 579 5/26/2020
5.2.0-alpha0072 541 5/25/2020
5.2.0-alpha0071 515 5/25/2020
5.2.0-alpha0070 541 5/24/2020
5.2.0-alpha0069 557 5/24/2020
5.2.0-alpha0066 481 5/21/2020
5.2.0-alpha0065 533 5/20/2020
5.2.0-alpha0064 530 5/17/2020
5.2.0-alpha0057 510 5/10/2020
5.2.0-alpha0056 643 5/8/2020
5.1.2 6,043 5/24/2020
5.1.1 4,141 5/10/2020
5.1.0 1,063 5/7/2020
5.1.0-alpha0055 495 5/3/2020
5.1.0-alpha0054 526 5/3/2020
5.1.0-alpha0053 522 4/30/2020
5.0.5 1,325 5/4/2020
5.0.4 2,998 5/3/2020
5.0.3 963 5/2/2020
5.0.2 738 5/2/2020
5.0.1 771 5/2/2020
5.0.0 1,237 4/29/2020
4.1.0-alpha0014 485 4/29/2020
4.1.0-alpha0013 492 4/24/2020
4.1.0-alpha0005 507 4/20/2020
4.1.0-alpha0004 486 4/18/2020
4.1.0-alpha0001 500 4/17/2020
4.0.9 790 4/29/2020
4.0.8 1,658 4/28/2020
4.0.7 5,218 4/27/2020
4.0.6 957 4/24/2020
4.0.5 5,193 4/22/2020
4.0.4 971 4/21/2020
4.0.3 794 4/20/2020
4.0.2 748 4/20/2020
4.0.1 831 4/20/2020
4.0.0 745 4/18/2020
3.8.0 7,955 4/17/2020
3.8.0-alpha0048 776 2/28/2020
3.8.0-alpha0042 1,517 2/13/2020
3.8.0-alpha0041 700 1/8/2020
3.8.0-alpha0040 895 9/26/2019
3.8.0-alpha0039 532 9/25/2019
3.7.1 179,667 9/25/2019
3.7.0 1,247 9/23/2019
3.7.0-alpha0038 726 8/3/2019
3.7.0-alpha0037 545 8/1/2019
3.6.0 36,473 7/17/2019
3.6.0-alpha0036 774 6/4/2019
3.6.0-alpha0035 593 6/2/2019
3.6.0-alpha0034 598 6/2/2019
3.6.0-alpha0033 565 6/2/2019
3.6.0-alpha0031 606 5/4/2019
3.5.2 3,027 7/11/2019
3.5.1 13,208 6/2/2019
3.5.0 3,194 5/2/2019
3.5.0-alpha0036 1,143 4/10/2019
3.5.0-alpha0031 582 3/25/2019
3.5.0-alpha0030 619 3/21/2019
3.5.0-alpha0029 577 3/19/2019
3.5.0-alpha0027 567 3/18/2019
3.5.0-alpha0026 585 3/18/2019
3.5.0-alpha0025 572 3/17/2019
3.5.0-alpha0024 565 3/16/2019
3.5.0-alpha0021 571 3/15/2019
3.5.0-alpha0020 610 3/14/2019
3.5.0-alpha0019 583 3/14/2019
3.5.0-alpha0018 570 3/14/2019
3.5.0-alpha0013 587 3/14/2019
3.4.5 17,977 3/21/2019
3.4.4 5,325 3/16/2019
3.4.3 987 3/14/2019
3.4.2 867 3/13/2019
3.4.1 894 3/12/2019
3.4.0 54,861 2/19/2019
3.4.0-alpha0022 838 1/27/2019
3.4.0-alpha0021 673 1/25/2019
3.4.0-alpha0020 794 12/21/2018
3.4.0-alpha0019 687 12/6/2018
3.4.0-alpha0018 751 11/21/2018
3.4.0-alpha0017 727 11/20/2018
3.4.0-alpha0016 766 11/5/2018
3.4.0-alpha0015 735 11/2/2018
3.4.0-alpha0011 727 11/1/2018
3.4.0-alpha0010 768 10/3/2018
3.4.0-alpha0009 770 9/16/2018
3.4.0-alpha0008 867 9/1/2018
3.4.0-alpha0007 797 8/29/2018
3.4.0-alpha0006 763 8/28/2018
3.4.0-alpha0005 801 8/28/2018
3.4.0-alpha0004 783 8/23/2018
3.4.0-alpha0003 835 8/22/2018
3.4.0-alpha0002 846 8/10/2018
3.4.0-alpha0001 849 7/30/2018
3.3.9 3,449 1/25/2019
3.3.8 3,284 1/18/2019
3.3.7 2,821 1/5/2019
3.3.6 1,330 12/19/2018
3.3.5 3,864 11/21/2018
3.3.4 2,227 11/20/2018
3.3.3 2,051 11/11/2018
3.3.2 4,315 10/12/2018
3.3.1 7,369 8/28/2018
3.3.0 21,769 7/18/2018
3.3.0-alpha0007 951 7/18/2018
3.3.0-alpha0006 982 7/17/2018
3.3.0-alpha0005 965 7/17/2018
3.3.0-alpha0004 850 7/17/2018
3.3.0-alpha0003 826 7/15/2018
3.3.0-alpha0001 965 7/11/2018
3.2.0 1,389 7/12/2018
3.1.2 1,293 7/11/2018
3.1.1 1,166 7/4/2018
3.1.0 1,237 6/20/2018
3.1.0-alpha0019 935 7/4/2018
3.1.0-alpha0017 924 7/2/2018
3.1.0-alpha0016 935 6/30/2018
3.1.0-alpha0014 867 6/26/2018
3.1.0-alpha0011 866 6/23/2018
3.1.0-alpha0010 936 6/20/2018
3.1.0-alpha0009 932 6/20/2018
3.1.0-alpha0008 868 6/19/2018
3.1.0-alpha0007 872 6/17/2018
3.1.0-alpha0006 941 6/14/2018
3.0.1 1,133 7/4/2018
1.0.0 1,546 6/14/2018