EasyNetQ.DI.Microsoft 8.0.0-beta92

Prefix Reserved
This is a prerelease version of EasyNetQ.DI.Microsoft.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package EasyNetQ.DI.Microsoft --version 8.0.0-beta92
                    
NuGet\Install-Package EasyNetQ.DI.Microsoft -Version 8.0.0-beta92
                    
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-beta92" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyNetQ.DI.Microsoft" Version="8.0.0-beta92" />
                    
Directory.Packages.props
<PackageReference Include="EasyNetQ.DI.Microsoft" />
                    
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.Microsoft --version 8.0.0-beta92
                    
#r "nuget: EasyNetQ.DI.Microsoft, 8.0.0-beta92"
                    
#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.Microsoft@8.0.0-beta92
                    
#: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.Microsoft&version=8.0.0-beta92&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Microsoft&version=8.0.0-beta92&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.

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.  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 (16)

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封装

ZStack.AspNetCore.EventBus

ZStack.AspNetCore框架 事件总线插件(EasyNetQ)

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on EasyNetQ.DI.Microsoft:

Repository Stars
pridejoy/MalusAdmin
海棠后台管理系统,基于Net7+Vue3+Soybean 开发的前后端分离式权限管理系统,采用最原生最简洁的方式来实现, 前端清新优雅高颜值,后端 结构清晰,优雅易懂,功能强大,提供快速开发的解决方案。
Version Downloads Last Updated
8.0.0-beta96 13,500 3/15/2024
8.0.0-beta95 699 10/22/2023
8.0.0-beta94 3,990 6/18/2023
8.0.0-beta93 226 6/17/2023
8.0.0-beta92 210 6/17/2023
8.0.0-beta91 206 6/11/2023
8.0.0-beta90 459 5/8/2023
8.0.0-beta9 349 3/21/2023
8.0.0-beta8 277 2/20/2023
8.0.0-beta6 242 1/29/2023
8.0.0-beta5 249 1/20/2023
8.0.0-beta4 249 1/5/2023
8.0.0-beta3 214 12/29/2022
8.0.0-beta2 258 12/16/2022
8.0.0-beta10 204 3/21/2023
8.0.0-beta1 248 12/15/2022
8.0.0-alpha9 240 12/14/2022
8.0.0-alpha8 239 11/30/2022
8.0.0-alpha7 331 11/12/2022
8.0.0-alpha6 251 10/29/2022
8.0.0-alpha5 264 10/5/2022
8.0.0-alpha4 268 10/1/2022
8.0.0-alpha3 300 9/26/2022
8.0.0-alpha2 277 9/21/2022
8.0.0-alpha1 301 9/19/2022
7.8.0 840,507 12/16/2023
7.7.0 66,682 11/19/2023
7.6.0 34,896 10/12/2023
7.5.5 135,193 7/20/2023
7.5.4 710 7/19/2023
7.5.3 54,996 6/15/2023
7.5.2 84,326 5/14/2023
7.5.1 25,153 5/4/2023
7.5.0 42,252 3/25/2023
7.4.3 141,429 2/3/2023
7.4.1 1,065 1/31/2023
7.4.0 6,222 1/29/2023
7.3.12 9,927 1/23/2023
7.3.11 1,296 1/22/2023
7.3.10 4,890 1/19/2023
7.3.9 20,652 1/17/2023
7.3.8 22,558 1/4/2023
7.3.7 11,805 12/22/2022
7.3.6 4,252 12/19/2022
7.3.5 33,760 11/30/2022
7.3.4 685 11/30/2022
7.3.3 7,548 11/24/2022
7.3.2 36,203 11/15/2022
7.3.1 1,276 11/12/2022
7.3.0 15,199 10/29/2022
7.3.0-alpha3 232 10/15/2022
7.3.0-alpha2 241 10/15/2022
7.2.1 17,314 10/9/2022
7.2.1-alpha1 213 10/6/2022
7.2.0 22,229 9/17/2022
7.2.0-alpha1 302 9/15/2022
7.1.1-alpha1 296 9/14/2022
7.1.0 4,717 9/13/2022
7.0.4 8,488 9/7/2022
7.0.3 1,001 9/5/2022
7.0.3-alpha1 233 9/5/2022
7.0.2 728 9/5/2022
7.0.1 33,611 8/27/2022
7.0.0 47,352 7/23/2022
7.0.0-rc5 1,446 6/28/2022
7.0.0-rc4 252 6/27/2022
7.0.0-rc3 917 6/20/2022
7.0.0-rc2 299 6/9/2022
7.0.0-rc1 260 6/9/2022
7.0.0-beta9 269 6/8/2022
7.0.0-beta7 282 6/5/2022
7.0.0-beta6 266 5/24/2022
7.0.0-beta5 2,054 11/18/2021
7.0.0-beta4 342 11/9/2021
7.0.0-beta3 407 11/6/2021
7.0.0-beta2 464 9/29/2021
7.0.0-beta1 382 9/13/2021
7.0.0-alpha9 394 8/25/2021
7.0.0-alpha8 331 8/25/2021
7.0.0-alpha7 333 8/25/2021
7.0.0-alpha6 341 8/16/2021
7.0.0-alpha5 353 8/16/2021
7.0.0-alpha4 841 1/20/2021
7.0.0-alpha3 555 12/31/2020
7.0.0-alpha2 511 12/28/2020
6.5.2 115,710 6/20/2022
6.4.1 30,816 5/22/2022
6.4.0-alpha0096 776 12/6/2020
6.4.0-alpha0095 591 12/6/2020
6.4.0-alpha0094 579 12/6/2020
6.4.0-alpha.99 391 12/26/2020
6.4.0-alpha.97 372 12/9/2020
6.3.1 581,124 11/28/2020
6.3.0 6,152 11/22/2020
6.2.0 2,955 11/15/2020
6.1.0 1,534 11/10/2020
6.0.3 1,039 11/9/2020
6.0.2 1,514 11/6/2020
6.0.1 1,439 11/1/2020
5.6.0 108,056 10/10/2020
5.5.0 10,391 10/5/2020
5.4.1 920 10/4/2020
5.4.0 1,558 10/1/2020
5.3.0-alpha0079 9,635 6/16/2020
5.3.0-alpha0078 606 6/15/2020
5.3.0-alpha0077 596 6/15/2020
5.3.0-alpha0076 629 6/15/2020
5.3.0-alpha0075 615 6/14/2020
5.3.0-alpha0074 591 6/12/2020
5.3.0-alpha0073 604 6/12/2020
5.3.0-alpha0072 621 6/11/2020
5.3.0-alpha0070 990 6/7/2020
5.2.2 31,008 9/4/2020
5.2.1 900 9/3/2020
5.2.0 107,116 6/7/2020
5.2.0-alpha0073 706 5/26/2020
5.2.0-alpha0072 672 5/25/2020
5.2.0-alpha0071 640 5/25/2020
5.2.0-alpha0070 671 5/24/2020
5.2.0-alpha0069 682 5/24/2020
5.2.0-alpha0066 611 5/21/2020
5.2.0-alpha0065 660 5/20/2020
5.2.0-alpha0064 668 5/17/2020
5.2.0-alpha0057 637 5/10/2020
5.2.0-alpha0056 772 5/8/2020
5.1.2 6,206 5/24/2020
5.1.1 4,305 5/10/2020
5.1.0 1,198 5/7/2020
5.1.0-alpha0055 618 5/3/2020
5.1.0-alpha0054 657 5/3/2020
5.1.0-alpha0053 655 4/30/2020
5.0.5 1,484 5/4/2020
5.0.4 3,134 5/3/2020
5.0.3 1,103 5/2/2020
5.0.2 873 5/2/2020
5.0.1 911 5/2/2020
5.0.0 1,405 4/29/2020
4.1.0-alpha0014 616 4/29/2020
4.1.0-alpha0013 623 4/24/2020
4.1.0-alpha0005 638 4/20/2020
4.1.0-alpha0004 614 4/18/2020
4.1.0-alpha0001 628 4/17/2020
4.0.9 931 4/29/2020
4.0.8 1,894 4/28/2020
4.0.7 5,437 4/27/2020
4.0.6 1,096 4/24/2020
4.0.5 5,398 4/22/2020
4.0.4 1,117 4/21/2020
4.0.3 937 4/20/2020
4.0.2 890 4/20/2020
4.0.1 969 4/20/2020
4.0.0 883 4/18/2020
3.8.0 8,127 4/17/2020
3.8.0-alpha0048 915 2/28/2020
3.8.0-alpha0042 1,645 2/13/2020
3.8.0-alpha0041 841 1/8/2020
3.8.0-alpha0040 1,091 9/26/2019
3.8.0-alpha0039 663 9/25/2019
3.7.1 188,930 9/25/2019
3.7.0 1,398 9/23/2019
3.7.0-alpha0038 863 8/3/2019
3.7.0-alpha0037 675 8/1/2019
3.6.0 36,966 7/17/2019
3.6.0-alpha0036 912 6/4/2019
3.6.0-alpha0035 727 6/2/2019
3.6.0-alpha0034 729 6/2/2019
3.6.0-alpha0033 692 6/2/2019
3.6.0-alpha0031 738 5/4/2019
3.5.2 3,191 7/11/2019
3.5.1 13,367 6/2/2019
3.5.0 3,527 5/2/2019
3.5.0-alpha0036 1,284 4/10/2019
3.5.0-alpha0031 721 3/25/2019
3.5.0-alpha0030 754 3/21/2019
3.5.0-alpha0029 713 3/19/2019
3.5.0-alpha0027 703 3/18/2019
3.5.0-alpha0026 723 3/18/2019
3.5.0-alpha0025 707 3/17/2019
3.5.0-alpha0024 709 3/16/2019
3.5.0-alpha0021 707 3/15/2019
3.5.0-alpha0020 740 3/14/2019
3.5.0-alpha0019 720 3/14/2019
3.5.0-alpha0018 711 3/14/2019
3.5.0-alpha0013 720 3/14/2019
3.4.5 18,168 3/21/2019
3.4.4 5,627 3/16/2019
3.4.3 1,132 3/14/2019
3.4.2 1,007 3/13/2019
3.4.1 1,035 3/12/2019
3.4.0 55,017 2/19/2019
3.4.0-alpha0022 978 1/27/2019
3.4.0-alpha0021 810 1/25/2019
3.4.0-alpha0020 925 12/21/2018
3.4.0-alpha0019 820 12/6/2018
3.4.0-alpha0018 892 11/21/2018
3.4.0-alpha0017 881 11/20/2018
3.4.0-alpha0016 921 11/5/2018
3.4.0-alpha0015 885 11/2/2018
3.4.0-alpha0011 887 11/1/2018
3.4.0-alpha0010 942 10/3/2018
3.4.0-alpha0009 927 9/16/2018
3.4.0-alpha0008 1,022 9/1/2018
3.4.0-alpha0007 955 8/29/2018
3.4.0-alpha0006 922 8/28/2018
3.4.0-alpha0005 957 8/28/2018
3.4.0-alpha0004 943 8/23/2018
3.4.0-alpha0003 999 8/22/2018
3.4.0-alpha0002 1,011 8/10/2018
3.4.0-alpha0001 1,090 7/30/2018
3.3.9 3,599 1/25/2019
3.3.8 3,417 1/18/2019
3.3.7 2,953 1/5/2019
3.3.6 1,467 12/19/2018
3.3.5 4,022 11/21/2018
3.3.4 2,382 11/20/2018
3.3.3 2,212 11/11/2018
3.3.2 4,541 10/12/2018
3.3.1 8,928 8/28/2018
3.3.0 22,054 7/18/2018
3.3.0-alpha0007 1,300 7/18/2018
3.3.0-alpha0006 1,328 7/17/2018
3.3.0-alpha0005 1,308 7/17/2018
3.3.0-alpha0004 1,087 7/17/2018
3.3.0-alpha0003 1,067 7/15/2018
3.3.0-alpha0001 1,315 7/11/2018
3.2.0 1,748 7/12/2018
3.1.2 1,645 7/11/2018
3.1.1 1,429 7/4/2018
3.1.0 1,598 6/20/2018
3.1.0-alpha0019 1,280 7/4/2018
3.1.0-alpha0017 1,164 7/2/2018
3.1.0-alpha0016 1,287 6/30/2018
3.1.0-alpha0014 1,111 6/26/2018
3.1.0-alpha0011 1,110 6/23/2018
3.1.0-alpha0010 1,283 6/20/2018
3.1.0-alpha0009 1,287 6/20/2018
3.1.0-alpha0008 1,115 6/19/2018
3.1.0-alpha0007 1,115 6/17/2018
3.1.0-alpha0006 1,290 6/14/2018
3.0.1 1,389 7/4/2018
1.0.0 2,103 6/14/2018