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,862 3/15/2024
8.0.0-beta95 653 10/22/2023
8.0.0-beta94 3,654 6/18/2023
8.0.0-beta93 150 6/17/2023
8.0.0-beta92 144 6/17/2023
8.0.0-beta91 140 6/11/2023
8.0.0-beta90 317 5/8/2023
8.0.0-beta9 277 3/21/2023
8.0.0-beta8 208 2/20/2023
8.0.0-beta6 163 1/29/2023
8.0.0-beta5 163 1/20/2023
8.0.0-beta4 171 1/5/2023
8.0.0-beta3 139 12/29/2022
8.0.0-beta2 181 12/16/2022
8.0.0-beta10 134 3/21/2023
8.0.0-beta1 153 12/15/2022
8.0.0-alpha9 159 12/14/2022
8.0.0-alpha8 160 11/30/2022
8.0.0-alpha7 250 11/12/2022
8.0.0-alpha6 181 10/29/2022
8.0.0-alpha5 172 10/5/2022
8.0.0-alpha4 191 10/1/2022
8.0.0-alpha3 221 9/26/2022
8.0.0-alpha2 192 9/21/2022
8.0.0-alpha1 217 9/19/2022
7.8.0 361,792 12/16/2023
7.7.0 60,010 11/19/2023
7.6.0 29,189 10/12/2023
7.5.5 118,744 7/20/2023
7.5.4 635 7/19/2023
7.5.3 53,083 6/15/2023
7.5.2 68,472 5/14/2023
7.5.1 20,499 5/4/2023
7.5.0 40,046 3/25/2023
7.4.3 108,026 2/3/2023
7.4.1 957 1/31/2023
7.4.0 6,124 1/29/2023
7.3.12 9,697 1/23/2023
7.3.11 1,204 1/22/2023
7.3.10 3,419 1/19/2023
7.3.9 20,394 1/17/2023
7.3.8 20,395 1/4/2023
7.3.7 11,654 12/22/2022
7.3.6 4,170 12/19/2022
7.3.5 29,143 11/30/2022
7.3.4 597 11/30/2022
7.3.3 6,973 11/24/2022
7.3.2 35,856 11/15/2022
7.3.1 1,178 11/12/2022
7.3.0 15,084 10/29/2022
7.3.0-alpha3 152 10/15/2022
7.3.0-alpha2 159 10/15/2022
7.2.1 16,160 10/9/2022
7.2.1-alpha1 134 10/6/2022
7.2.0 21,210 9/17/2022
7.2.0-alpha1 222 9/15/2022
7.1.1-alpha1 215 9/14/2022
7.1.0 4,619 9/13/2022
7.0.4 8,238 9/7/2022
7.0.3 906 9/5/2022
7.0.3-alpha1 159 9/5/2022
7.0.2 637 9/5/2022
7.0.1 32,554 8/27/2022
7.0.0 44,897 7/23/2022
7.0.0-rc5 1,271 6/28/2022
7.0.0-rc4 162 6/27/2022
7.0.0-rc3 825 6/20/2022
7.0.0-rc2 204 6/9/2022
7.0.0-rc1 167 6/9/2022
7.0.0-beta9 179 6/8/2022
7.0.0-beta7 191 6/5/2022
7.0.0-beta6 177 5/24/2022
7.0.0-beta5 1,943 11/18/2021
7.0.0-beta4 243 11/9/2021
7.0.0-beta3 303 11/6/2021
7.0.0-beta2 363 9/29/2021
7.0.0-beta1 280 9/13/2021
7.0.0-alpha9 289 8/25/2021
7.0.0-alpha8 237 8/25/2021
7.0.0-alpha7 232 8/25/2021
7.0.0-alpha6 240 8/16/2021
7.0.0-alpha5 245 8/16/2021
7.0.0-alpha4 649 1/20/2021
7.0.0-alpha3 436 12/31/2020
7.0.0-alpha2 398 12/28/2020
6.5.2 99,764 6/20/2022
6.4.1 29,402 5/22/2022
6.4.0-alpha0096 665 12/6/2020
6.4.0-alpha0095 446 12/6/2020
6.4.0-alpha0094 471 12/6/2020
6.4.0-alpha.99 282 12/26/2020
6.4.0-alpha.97 260 12/9/2020
6.3.1 526,806 11/28/2020
6.3.0 5,862 11/22/2020
6.2.0 2,743 11/15/2020
6.1.0 1,366 11/10/2020
6.0.3 921 11/9/2020
6.0.2 1,046 11/6/2020
6.0.1 1,311 11/1/2020
5.6.0 97,289 10/10/2020
5.5.0 10,142 10/5/2020
5.4.1 797 10/4/2020
5.4.0 1,403 10/1/2020
5.3.0-alpha0079 8,765 6/16/2020
5.3.0-alpha0078 492 6/15/2020
5.3.0-alpha0077 488 6/15/2020
5.3.0-alpha0076 513 6/15/2020
5.3.0-alpha0075 492 6/14/2020
5.3.0-alpha0074 485 6/12/2020
5.3.0-alpha0073 492 6/12/2020
5.3.0-alpha0072 511 6/11/2020
5.3.0-alpha0070 871 6/7/2020
5.2.2 30,487 9/4/2020
5.2.1 779 9/3/2020
5.2.0 104,332 6/7/2020
5.2.0-alpha0073 588 5/26/2020
5.2.0-alpha0072 550 5/25/2020
5.2.0-alpha0071 525 5/25/2020
5.2.0-alpha0070 551 5/24/2020
5.2.0-alpha0069 566 5/24/2020
5.2.0-alpha0066 490 5/21/2020
5.2.0-alpha0065 543 5/20/2020
5.2.0-alpha0064 539 5/17/2020
5.2.0-alpha0057 520 5/10/2020
5.2.0-alpha0056 653 5/8/2020
5.1.2 6,055 5/24/2020
5.1.1 4,153 5/10/2020
5.1.0 1,074 5/7/2020
5.1.0-alpha0055 504 5/3/2020
5.1.0-alpha0054 536 5/3/2020
5.1.0-alpha0053 531 4/30/2020
5.0.5 1,337 5/4/2020
5.0.4 3,009 5/3/2020
5.0.3 975 5/2/2020
5.0.2 749 5/2/2020
5.0.1 783 5/2/2020
5.0.0 1,249 4/29/2020
4.1.0-alpha0014 495 4/29/2020
4.1.0-alpha0013 503 4/24/2020
4.1.0-alpha0005 517 4/20/2020
4.1.0-alpha0004 495 4/18/2020
4.1.0-alpha0001 509 4/17/2020
4.0.9 801 4/29/2020
4.0.8 1,701 4/28/2020
4.0.7 5,229 4/27/2020
4.0.6 969 4/24/2020
4.0.5 5,243 4/22/2020
4.0.4 983 4/21/2020
4.0.3 805 4/20/2020
4.0.2 759 4/20/2020
4.0.1 844 4/20/2020
4.0.0 756 4/18/2020
3.8.0 7,968 4/17/2020
3.8.0-alpha0048 785 2/28/2020
3.8.0-alpha0042 1,525 2/13/2020
3.8.0-alpha0041 708 1/8/2020
3.8.0-alpha0040 903 9/26/2019
3.8.0-alpha0039 541 9/25/2019
3.7.1 181,095 9/25/2019
3.7.0 1,259 9/23/2019
3.7.0-alpha0038 734 8/3/2019
3.7.0-alpha0037 553 8/1/2019
3.6.0 36,591 7/17/2019
3.6.0-alpha0036 782 6/4/2019
3.6.0-alpha0035 601 6/2/2019
3.6.0-alpha0034 606 6/2/2019
3.6.0-alpha0033 573 6/2/2019
3.6.0-alpha0031 614 5/4/2019
3.5.2 3,041 7/11/2019
3.5.1 13,221 6/2/2019
3.5.0 3,259 5/2/2019
3.5.0-alpha0036 1,152 4/10/2019
3.5.0-alpha0031 590 3/25/2019
3.5.0-alpha0030 627 3/21/2019
3.5.0-alpha0029 585 3/19/2019
3.5.0-alpha0027 575 3/18/2019
3.5.0-alpha0026 593 3/18/2019
3.5.0-alpha0025 580 3/17/2019
3.5.0-alpha0024 574 3/16/2019
3.5.0-alpha0021 579 3/15/2019
3.5.0-alpha0020 618 3/14/2019
3.5.0-alpha0019 592 3/14/2019
3.5.0-alpha0018 584 3/14/2019
3.5.0-alpha0013 596 3/14/2019
3.4.5 18,014 3/21/2019
3.4.4 5,372 3/16/2019
3.4.3 997 3/14/2019
3.4.2 877 3/13/2019
3.4.1 905 3/12/2019
3.4.0 54,873 2/19/2019
3.4.0-alpha0022 850 1/27/2019
3.4.0-alpha0021 683 1/25/2019
3.4.0-alpha0020 803 12/21/2018
3.4.0-alpha0019 695 12/6/2018
3.4.0-alpha0018 759 11/21/2018
3.4.0-alpha0017 735 11/20/2018
3.4.0-alpha0016 776 11/5/2018
3.4.0-alpha0015 745 11/2/2018
3.4.0-alpha0011 735 11/1/2018
3.4.0-alpha0010 779 10/3/2018
3.4.0-alpha0009 780 9/16/2018
3.4.0-alpha0008 877 9/1/2018
3.4.0-alpha0007 807 8/29/2018
3.4.0-alpha0006 773 8/28/2018
3.4.0-alpha0005 812 8/28/2018
3.4.0-alpha0004 794 8/23/2018
3.4.0-alpha0003 845 8/22/2018
3.4.0-alpha0002 856 8/10/2018
3.4.0-alpha0001 857 7/30/2018
3.3.9 3,459 1/25/2019
3.3.8 3,294 1/18/2019
3.3.7 2,831 1/5/2019
3.3.6 1,343 12/19/2018
3.3.5 3,876 11/21/2018
3.3.4 2,239 11/20/2018
3.3.3 2,062 11/11/2018
3.3.2 4,358 10/12/2018
3.3.1 7,551 8/28/2018
3.3.0 21,790 7/18/2018
3.3.0-alpha0007 963 7/18/2018
3.3.0-alpha0006 990 7/17/2018
3.3.0-alpha0005 973 7/17/2018
3.3.0-alpha0004 859 7/17/2018
3.3.0-alpha0003 835 7/15/2018
3.3.0-alpha0001 974 7/11/2018
3.2.0 1,399 7/12/2018
3.1.2 1,303 7/11/2018
3.1.1 1,177 7/4/2018
3.1.0 1,249 6/20/2018
3.1.0-alpha0019 943 7/4/2018
3.1.0-alpha0017 933 7/2/2018
3.1.0-alpha0016 945 6/30/2018
3.1.0-alpha0014 876 6/26/2018
3.1.0-alpha0011 876 6/23/2018
3.1.0-alpha0010 944 6/20/2018
3.1.0-alpha0009 941 6/20/2018
3.1.0-alpha0008 876 6/19/2018
3.1.0-alpha0007 880 6/17/2018
3.1.0-alpha0006 949 6/14/2018
3.0.1 1,145 7/4/2018
1.0.0 1,606 6/14/2018