EasyNetQ.DI.Microsoft 8.0.0-alpha9

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-alpha9
                    
NuGet\Install-Package EasyNetQ.DI.Microsoft -Version 8.0.0-alpha9
                    
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-alpha9" />
                    
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-alpha9" />
                    
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-alpha9
                    
#r "nuget: EasyNetQ.DI.Microsoft, 8.0.0-alpha9"
                    
#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-alpha9
                    
#: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-alpha9&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Microsoft&version=8.0.0-alpha9&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 (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 10,638 3/15/2024
8.0.0-beta95 681 10/22/2023
8.0.0-beta94 3,959 6/18/2023
8.0.0-beta93 200 6/17/2023
8.0.0-beta92 186 6/17/2023
8.0.0-beta91 182 6/11/2023
8.0.0-beta90 430 5/8/2023
8.0.0-beta9 323 3/21/2023
8.0.0-beta8 252 2/20/2023
8.0.0-beta6 212 1/29/2023
8.0.0-beta5 222 1/20/2023
8.0.0-beta4 220 1/5/2023
8.0.0-beta3 187 12/29/2022
8.0.0-beta2 234 12/16/2022
8.0.0-beta10 179 3/21/2023
8.0.0-beta1 202 12/15/2022
8.0.0-alpha9 211 12/14/2022
8.0.0-alpha8 211 11/30/2022
8.0.0-alpha7 302 11/12/2022
8.0.0-alpha6 227 10/29/2022
8.0.0-alpha5 232 10/5/2022
8.0.0-alpha4 242 10/1/2022
8.0.0-alpha3 270 9/26/2022
8.0.0-alpha2 247 9/21/2022
8.0.0-alpha1 271 9/19/2022
7.8.0 737,880 12/16/2023
7.7.0 66,385 11/19/2023
7.6.0 34,595 10/12/2023
7.5.5 132,045 7/20/2023
7.5.4 676 7/19/2023
7.5.3 54,621 6/15/2023
7.5.2 83,135 5/14/2023
7.5.1 24,541 5/4/2023
7.5.0 41,754 3/25/2023
7.4.3 136,875 2/3/2023
7.4.1 1,028 1/31/2023
7.4.0 6,187 1/29/2023
7.3.12 9,890 1/23/2023
7.3.11 1,265 1/22/2023
7.3.10 4,569 1/19/2023
7.3.9 20,609 1/17/2023
7.3.8 22,421 1/4/2023
7.3.7 11,766 12/22/2022
7.3.6 4,220 12/19/2022
7.3.5 32,798 11/30/2022
7.3.4 652 11/30/2022
7.3.3 7,449 11/24/2022
7.3.2 36,147 11/15/2022
7.3.1 1,239 11/12/2022
7.3.0 15,159 10/29/2022
7.3.0-alpha3 205 10/15/2022
7.3.0-alpha2 211 10/15/2022
7.2.1 17,027 10/9/2022
7.2.1-alpha1 182 10/6/2022
7.2.0 21,978 9/17/2022
7.2.0-alpha1 274 9/15/2022
7.1.1-alpha1 266 9/14/2022
7.1.0 4,680 9/13/2022
7.0.4 8,434 9/7/2022
7.0.3 967 9/5/2022
7.0.3-alpha1 209 9/5/2022
7.0.2 694 9/5/2022
7.0.1 33,554 8/27/2022
7.0.0 47,183 7/23/2022
7.0.0-rc5 1,413 6/28/2022
7.0.0-rc4 222 6/27/2022
7.0.0-rc3 888 6/20/2022
7.0.0-rc2 267 6/9/2022
7.0.0-rc1 230 6/9/2022
7.0.0-beta9 241 6/8/2022
7.0.0-beta7 254 6/5/2022
7.0.0-beta6 238 5/24/2022
7.0.0-beta5 2,024 11/18/2021
7.0.0-beta4 313 11/9/2021
7.0.0-beta3 376 11/6/2021
7.0.0-beta2 432 9/29/2021
7.0.0-beta1 351 9/13/2021
7.0.0-alpha9 366 8/25/2021
7.0.0-alpha8 304 8/25/2021
7.0.0-alpha7 301 8/25/2021
7.0.0-alpha6 311 8/16/2021
7.0.0-alpha5 318 8/16/2021
7.0.0-alpha4 811 1/20/2021
7.0.0-alpha3 522 12/31/2020
7.0.0-alpha2 476 12/28/2020
6.5.2 113,617 6/20/2022
6.4.1 30,656 5/22/2022
6.4.0-alpha0096 747 12/6/2020
6.4.0-alpha0095 558 12/6/2020
6.4.0-alpha0094 551 12/6/2020
6.4.0-alpha.99 361 12/26/2020
6.4.0-alpha.97 339 12/9/2020
6.3.1 569,738 11/28/2020
6.3.0 6,089 11/22/2020
6.2.0 2,908 11/15/2020
6.1.0 1,499 11/10/2020
6.0.3 1,009 11/9/2020
6.0.2 1,428 11/6/2020
6.0.1 1,408 11/1/2020
5.6.0 106,375 10/10/2020
5.5.0 10,353 10/5/2020
5.4.1 890 10/4/2020
5.4.0 1,520 10/1/2020
5.3.0-alpha0079 9,603 6/16/2020
5.3.0-alpha0078 573 6/15/2020
5.3.0-alpha0077 566 6/15/2020
5.3.0-alpha0076 597 6/15/2020
5.3.0-alpha0075 579 6/14/2020
5.3.0-alpha0074 562 6/12/2020
5.3.0-alpha0073 574 6/12/2020
5.3.0-alpha0072 590 6/11/2020
5.3.0-alpha0070 959 6/7/2020
5.2.2 30,930 9/4/2020
5.2.1 867 9/3/2020
5.2.0 106,657 6/7/2020
5.2.0-alpha0073 677 5/26/2020
5.2.0-alpha0072 639 5/25/2020
5.2.0-alpha0071 610 5/25/2020
5.2.0-alpha0070 639 5/24/2020
5.2.0-alpha0069 652 5/24/2020
5.2.0-alpha0066 580 5/21/2020
5.2.0-alpha0065 627 5/20/2020
5.2.0-alpha0064 637 5/17/2020
5.2.0-alpha0057 605 5/10/2020
5.2.0-alpha0056 742 5/8/2020
5.1.2 6,165 5/24/2020
5.1.1 4,269 5/10/2020
5.1.0 1,163 5/7/2020
5.1.0-alpha0055 587 5/3/2020
5.1.0-alpha0054 620 5/3/2020
5.1.0-alpha0053 623 4/30/2020
5.0.5 1,443 5/4/2020
5.0.4 3,101 5/3/2020
5.0.3 1,068 5/2/2020
5.0.2 844 5/2/2020
5.0.1 877 5/2/2020
5.0.0 1,367 4/29/2020
4.1.0-alpha0014 584 4/29/2020
4.1.0-alpha0013 592 4/24/2020
4.1.0-alpha0005 604 4/20/2020
4.1.0-alpha0004 580 4/18/2020
4.1.0-alpha0001 596 4/17/2020
4.0.9 893 4/29/2020
4.0.8 1,862 4/28/2020
4.0.7 5,398 4/27/2020
4.0.6 1,064 4/24/2020
4.0.5 5,356 4/22/2020
4.0.4 1,082 4/21/2020
4.0.3 903 4/20/2020
4.0.2 856 4/20/2020
4.0.1 936 4/20/2020
4.0.0 848 4/18/2020
3.8.0 8,086 4/17/2020
3.8.0-alpha0048 874 2/28/2020
3.8.0-alpha0042 1,611 2/13/2020
3.8.0-alpha0041 807 1/8/2020
3.8.0-alpha0040 1,058 9/26/2019
3.8.0-alpha0039 629 9/25/2019
3.7.1 187,790 9/25/2019
3.7.0 1,364 9/23/2019
3.7.0-alpha0038 829 8/3/2019
3.7.0-alpha0037 645 8/1/2019
3.6.0 36,892 7/17/2019
3.6.0-alpha0036 882 6/4/2019
3.6.0-alpha0035 695 6/2/2019
3.6.0-alpha0034 696 6/2/2019
3.6.0-alpha0033 662 6/2/2019
3.6.0-alpha0031 709 5/4/2019
3.5.2 3,159 7/11/2019
3.5.1 13,332 6/2/2019
3.5.0 3,483 5/2/2019
3.5.0-alpha0036 1,249 4/10/2019
3.5.0-alpha0031 689 3/25/2019
3.5.0-alpha0030 721 3/21/2019
3.5.0-alpha0029 680 3/19/2019
3.5.0-alpha0027 671 3/18/2019
3.5.0-alpha0026 688 3/18/2019
3.5.0-alpha0025 670 3/17/2019
3.5.0-alpha0024 670 3/16/2019
3.5.0-alpha0021 675 3/15/2019
3.5.0-alpha0020 706 3/14/2019
3.5.0-alpha0019 689 3/14/2019
3.5.0-alpha0018 678 3/14/2019
3.5.0-alpha0013 686 3/14/2019
3.4.5 18,130 3/21/2019
3.4.4 5,585 3/16/2019
3.4.3 1,098 3/14/2019
3.4.2 975 3/13/2019
3.4.1 1,007 3/12/2019
3.4.0 54,981 2/19/2019
3.4.0-alpha0022 941 1/27/2019
3.4.0-alpha0021 777 1/25/2019
3.4.0-alpha0020 897 12/21/2018
3.4.0-alpha0019 791 12/6/2018
3.4.0-alpha0018 858 11/21/2018
3.4.0-alpha0017 849 11/20/2018
3.4.0-alpha0016 890 11/5/2018
3.4.0-alpha0015 856 11/2/2018
3.4.0-alpha0011 853 11/1/2018
3.4.0-alpha0010 906 10/3/2018
3.4.0-alpha0009 895 9/16/2018
3.4.0-alpha0008 988 9/1/2018
3.4.0-alpha0007 925 8/29/2018
3.4.0-alpha0006 888 8/28/2018
3.4.0-alpha0005 924 8/28/2018
3.4.0-alpha0004 909 8/23/2018
3.4.0-alpha0003 962 8/22/2018
3.4.0-alpha0002 974 8/10/2018
3.4.0-alpha0001 1,038 7/30/2018
3.3.9 3,563 1/25/2019
3.3.8 3,385 1/18/2019
3.3.7 2,925 1/5/2019
3.3.6 1,435 12/19/2018
3.3.5 3,987 11/21/2018
3.3.4 2,346 11/20/2018
3.3.3 2,176 11/11/2018
3.3.2 4,500 10/12/2018
3.3.1 8,682 8/28/2018
3.3.0 21,998 7/18/2018
3.3.0-alpha0007 1,229 7/18/2018
3.3.0-alpha0006 1,254 7/17/2018
3.3.0-alpha0005 1,237 7/17/2018
3.3.0-alpha0004 1,035 7/17/2018
3.3.0-alpha0003 1,017 7/15/2018
3.3.0-alpha0001 1,243 7/11/2018
3.2.0 1,672 7/12/2018
3.1.2 1,571 7/11/2018
3.1.1 1,372 7/4/2018
3.1.0 1,521 6/20/2018
3.1.0-alpha0019 1,206 7/4/2018
3.1.0-alpha0017 1,111 7/2/2018
3.1.0-alpha0016 1,212 6/30/2018
3.1.0-alpha0014 1,055 6/26/2018
3.1.0-alpha0011 1,059 6/23/2018
3.1.0-alpha0010 1,211 6/20/2018
3.1.0-alpha0009 1,213 6/20/2018
3.1.0-alpha0008 1,060 6/19/2018
3.1.0-alpha0007 1,061 6/17/2018
3.1.0-alpha0006 1,217 6/14/2018
3.0.1 1,334 7/4/2018
1.0.0 2,013 6/14/2018