EasyNetQ.DI.Microsoft 8.0.0-beta8

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-beta8
                    
NuGet\Install-Package EasyNetQ.DI.Microsoft -Version 8.0.0-beta8
                    
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-beta8" />
                    
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-beta8" />
                    
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-beta8
                    
#r "nuget: EasyNetQ.DI.Microsoft, 8.0.0-beta8"
                    
#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.Microsoft&version=8.0.0-beta8&prerelease
                    
Install EasyNetQ.DI.Microsoft as a Cake Addin
#tool nuget:?package=EasyNetQ.DI.Microsoft&version=8.0.0-beta8&prerelease
                    
Install EasyNetQ.DI.Microsoft 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. 
.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封装

OneFx.RabbitMQ

OneFx框架对消息队列的支持

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 6,536 3/15/2024
8.0.0-beta95 661 10/22/2023
8.0.0-beta94 3,929 6/18/2023
8.0.0-beta93 163 6/17/2023
8.0.0-beta92 158 6/17/2023
8.0.0-beta91 154 6/11/2023
8.0.0-beta90 398 5/8/2023
8.0.0-beta9 291 3/21/2023
8.0.0-beta8 223 2/20/2023
8.0.0-beta6 179 1/29/2023
8.0.0-beta5 185 1/20/2023
8.0.0-beta4 188 1/5/2023
8.0.0-beta3 157 12/29/2022
8.0.0-beta2 200 12/16/2022
8.0.0-beta10 148 3/21/2023
8.0.0-beta1 171 12/15/2022
8.0.0-alpha9 177 12/14/2022
8.0.0-alpha8 177 11/30/2022
8.0.0-alpha7 269 11/12/2022
8.0.0-alpha6 200 10/29/2022
8.0.0-alpha5 191 10/5/2022
8.0.0-alpha4 213 10/1/2022
8.0.0-alpha3 243 9/26/2022
8.0.0-alpha2 215 9/21/2022
8.0.0-alpha1 238 9/19/2022
7.8.0 615,846 12/16/2023
7.7.0 65,632 11/19/2023
7.6.0 33,284 10/12/2023
7.5.5 127,843 7/20/2023
7.5.4 647 7/19/2023
7.5.3 54,316 6/15/2023
7.5.2 78,846 5/14/2023
7.5.1 23,459 5/4/2023
7.5.0 41,225 3/25/2023
7.4.3 127,741 2/3/2023
7.4.1 982 1/31/2023
7.4.0 6,149 1/29/2023
7.3.12 9,832 1/23/2023
7.3.11 1,225 1/22/2023
7.3.10 4,353 1/19/2023
7.3.9 20,553 1/17/2023
7.3.8 21,937 1/4/2023
7.3.7 11,733 12/22/2022
7.3.6 4,189 12/19/2022
7.3.5 31,724 11/30/2022
7.3.4 618 11/30/2022
7.3.3 7,211 11/24/2022
7.3.2 36,111 11/15/2022
7.3.1 1,203 11/12/2022
7.3.0 15,123 10/29/2022
7.3.0-alpha3 170 10/15/2022
7.3.0-alpha2 178 10/15/2022
7.2.1 16,710 10/9/2022
7.2.1-alpha1 153 10/6/2022
7.2.0 21,742 9/17/2022
7.2.0-alpha1 243 9/15/2022
7.1.1-alpha1 237 9/14/2022
7.1.0 4,645 9/13/2022
7.0.4 8,352 9/7/2022
7.0.3 932 9/5/2022
7.0.3-alpha1 181 9/5/2022
7.0.2 663 9/5/2022
7.0.1 33,421 8/27/2022
7.0.0 46,524 7/23/2022
7.0.0-rc5 1,380 6/28/2022
7.0.0-rc4 185 6/27/2022
7.0.0-rc3 852 6/20/2022
7.0.0-rc2 227 6/9/2022
7.0.0-rc1 191 6/9/2022
7.0.0-beta9 206 6/8/2022
7.0.0-beta7 214 6/5/2022
7.0.0-beta6 199 5/24/2022
7.0.0-beta5 1,983 11/18/2021
7.0.0-beta4 272 11/9/2021
7.0.0-beta3 332 11/6/2021
7.0.0-beta2 393 9/29/2021
7.0.0-beta1 309 9/13/2021
7.0.0-alpha9 322 8/25/2021
7.0.0-alpha8 271 8/25/2021
7.0.0-alpha7 266 8/25/2021
7.0.0-alpha6 275 8/16/2021
7.0.0-alpha5 279 8/16/2021
7.0.0-alpha4 766 1/20/2021
7.0.0-alpha3 476 12/31/2020
7.0.0-alpha2 439 12/28/2020
6.5.2 110,270 6/20/2022
6.4.1 30,362 5/22/2022
6.4.0-alpha0096 705 12/6/2020
6.4.0-alpha0095 486 12/6/2020
6.4.0-alpha0094 511 12/6/2020
6.4.0-alpha.99 320 12/26/2020
6.4.0-alpha.97 299 12/9/2020
6.3.1 556,750 11/28/2020
6.3.0 5,989 11/22/2020
6.2.0 2,841 11/15/2020
6.1.0 1,459 11/10/2020
6.0.3 965 11/9/2020
6.0.2 1,322 11/6/2020
6.0.1 1,366 11/1/2020
5.6.0 103,836 10/10/2020
5.5.0 10,264 10/5/2020
5.4.1 840 10/4/2020
5.4.0 1,468 10/1/2020
5.3.0-alpha0079 9,559 6/16/2020
5.3.0-alpha0078 532 6/15/2020
5.3.0-alpha0077 528 6/15/2020
5.3.0-alpha0076 554 6/15/2020
5.3.0-alpha0075 533 6/14/2020
5.3.0-alpha0074 526 6/12/2020
5.3.0-alpha0073 533 6/12/2020
5.3.0-alpha0072 551 6/11/2020
5.3.0-alpha0070 915 6/7/2020
5.2.2 30,733 9/4/2020
5.2.1 822 9/3/2020
5.2.0 106,021 6/7/2020
5.2.0-alpha0073 630 5/26/2020
5.2.0-alpha0072 592 5/25/2020
5.2.0-alpha0071 567 5/25/2020
5.2.0-alpha0070 593 5/24/2020
5.2.0-alpha0069 609 5/24/2020
5.2.0-alpha0066 532 5/21/2020
5.2.0-alpha0065 585 5/20/2020
5.2.0-alpha0064 585 5/17/2020
5.2.0-alpha0057 563 5/10/2020
5.2.0-alpha0056 698 5/8/2020
5.1.2 6,108 5/24/2020
5.1.1 4,209 5/10/2020
5.1.0 1,120 5/7/2020
5.1.0-alpha0055 546 5/3/2020
5.1.0-alpha0054 578 5/3/2020
5.1.0-alpha0053 575 4/30/2020
5.0.5 1,398 5/4/2020
5.0.4 3,054 5/3/2020
5.0.3 1,022 5/2/2020
5.0.2 795 5/2/2020
5.0.1 830 5/2/2020
5.0.0 1,310 4/29/2020
4.1.0-alpha0014 540 4/29/2020
4.1.0-alpha0013 546 4/24/2020
4.1.0-alpha0005 560 4/20/2020
4.1.0-alpha0004 538 4/18/2020
4.1.0-alpha0001 552 4/17/2020
4.0.9 847 4/29/2020
4.0.8 1,808 4/28/2020
4.0.7 5,346 4/27/2020
4.0.6 1,015 4/24/2020
4.0.5 5,300 4/22/2020
4.0.4 1,032 4/21/2020
4.0.3 854 4/20/2020
4.0.2 807 4/20/2020
4.0.1 889 4/20/2020
4.0.0 800 4/18/2020
3.8.0 8,036 4/17/2020
3.8.0-alpha0048 827 2/28/2020
3.8.0-alpha0042 1,568 2/13/2020
3.8.0-alpha0041 751 1/8/2020
3.8.0-alpha0040 1,005 9/26/2019
3.8.0-alpha0039 586 9/25/2019
3.7.1 185,891 9/25/2019
3.7.0 1,317 9/23/2019
3.7.0-alpha0038 780 8/3/2019
3.7.0-alpha0037 600 8/1/2019
3.6.0 36,770 7/17/2019
3.6.0-alpha0036 834 6/4/2019
3.6.0-alpha0035 646 6/2/2019
3.6.0-alpha0034 651 6/2/2019
3.6.0-alpha0033 618 6/2/2019
3.6.0-alpha0031 662 5/4/2019
3.5.2 3,105 7/11/2019
3.5.1 13,284 6/2/2019
3.5.0 3,398 5/2/2019
3.5.0-alpha0036 1,199 4/10/2019
3.5.0-alpha0031 637 3/25/2019
3.5.0-alpha0030 676 3/21/2019
3.5.0-alpha0029 634 3/19/2019
3.5.0-alpha0027 624 3/18/2019
3.5.0-alpha0026 641 3/18/2019
3.5.0-alpha0025 627 3/17/2019
3.5.0-alpha0024 621 3/16/2019
3.5.0-alpha0021 631 3/15/2019
3.5.0-alpha0020 664 3/14/2019
3.5.0-alpha0019 639 3/14/2019
3.5.0-alpha0018 633 3/14/2019
3.5.0-alpha0013 640 3/14/2019
3.4.5 18,078 3/21/2019
3.4.4 5,533 3/16/2019
3.4.3 1,046 3/14/2019
3.4.2 927 3/13/2019
3.4.1 956 3/12/2019
3.4.0 54,929 2/19/2019
3.4.0-alpha0022 897 1/27/2019
3.4.0-alpha0021 729 1/25/2019
3.4.0-alpha0020 852 12/21/2018
3.4.0-alpha0019 745 12/6/2018
3.4.0-alpha0018 812 11/21/2018
3.4.0-alpha0017 792 11/20/2018
3.4.0-alpha0016 835 11/5/2018
3.4.0-alpha0015 802 11/2/2018
3.4.0-alpha0011 797 11/1/2018
3.4.0-alpha0010 847 10/3/2018
3.4.0-alpha0009 841 9/16/2018
3.4.0-alpha0008 938 9/1/2018
3.4.0-alpha0007 868 8/29/2018
3.4.0-alpha0006 833 8/28/2018
3.4.0-alpha0005 873 8/28/2018
3.4.0-alpha0004 858 8/23/2018
3.4.0-alpha0003 908 8/22/2018
3.4.0-alpha0002 920 8/10/2018
3.4.0-alpha0001 952 7/30/2018
3.3.9 3,512 1/25/2019
3.3.8 3,343 1/18/2019
3.3.7 2,879 1/5/2019
3.3.6 1,390 12/19/2018
3.3.5 3,939 11/21/2018
3.3.4 2,298 11/20/2018
3.3.3 2,124 11/11/2018
3.3.2 4,439 10/12/2018
3.3.1 8,243 8/28/2018
3.3.0 21,905 7/18/2018
3.3.0-alpha0007 1,105 7/18/2018
3.3.0-alpha0006 1,133 7/17/2018
3.3.0-alpha0005 1,115 7/17/2018
3.3.0-alpha0004 953 7/17/2018
3.3.0-alpha0003 931 7/15/2018
3.3.0-alpha0001 1,116 7/11/2018
3.2.0 1,548 7/12/2018
3.1.2 1,451 7/11/2018
3.1.1 1,282 7/4/2018
3.1.0 1,401 6/20/2018
3.1.0-alpha0019 1,088 7/4/2018
3.1.0-alpha0017 1,028 7/2/2018
3.1.0-alpha0016 1,089 6/30/2018
3.1.0-alpha0014 971 6/26/2018
3.1.0-alpha0011 972 6/23/2018
3.1.0-alpha0010 1,089 6/20/2018
3.1.0-alpha0009 1,086 6/20/2018
3.1.0-alpha0008 973 6/19/2018
3.1.0-alpha0007 975 6/17/2018
3.1.0-alpha0006 1,094 6/14/2018
3.0.1 1,250 7/4/2018
1.0.0 1,852 6/14/2018