DotNetBrightener.Plugins.EventPubSub.AzureServiceBus 2024.0.14.6-rc-242770501

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

Azure Service Bus Integration for Event PubSub Library

© 2024 DotNet Brightener

Versions

Library Version
EventPubSub Core NuGet Version
EventPubSub Distributed Library NuGet Version
Dependency Injection Library NuGet Version
Azure Service Bus Integration Library NuGet Version
RabbitMq Integration Library NuGet Version

Installation

dotnet package add DotNetBrightener.Plugins.EventPubSub
dotnet package add DotNetBrightener.Plugins.EventPubSub.DependencyInjection
dotnet package add DotNetBrightener.Plugins.EventPubSub.Distributed
dotnet package add DotNetBrightener.Plugins.EventPubSub.AzureServiceBus
# or 
dotnet add package DotNetBrightener.Plugins.EventPubSub.RabbitMq

Usage

Configuration

Option 1: Use IConfiguration to configure the service bus

// Initialize EventPubSubService
var eventPubSubConfig = builder.Services
                               .AddEventPubSubService()
                                // scan for event messages in the given assembly
                               .AddEventMessagesFromAssemblies(typeof(DistributedTestMessage).Assembly)
                                // scan for event handlers in the given assembly
                               .AddEventHandlersFromAssemblies(Assembly.GetExecutingAssembly());

// Add Azure Service Bus
eventPubSubConfig.UseAzureServiceBus(builder.Configuration)
                 .Finalize();

In your appsettings.json file, add the the following configuration:

  "ServiceBusConfiguration": {
    "ConnectionString": "<your-endpoint-to-azure-service-bus>",
    "SubscriptionName": "<application-name>",
    "IncludeNamespaceForTopicName": false
  }
Option 2: Configure from code

// Initialize EventPubSubService
var eventPubSubConfig = builder.Services
                               .AddEventPubSubService()
                                // scan for event messages in the given assembly
                               .AddEventMessagesFromAssemblies(Assembly.GetExecutingAssembly(), typeof(DistributedTestMessage).Assembly)
                                // scan for event handlers in the given assembly
                               .AddEventHandlersFromAssemblies(Assembly.GetExecutingAssembly());

var distributedIntegrations = eventPubSubConfig.EnableDistributedIntegrations();

distributedIntegrations.SetSubscriptionName("<application-name>");
// if you want to exclude namespace in entity name
distributedIntegrations.ExcludeNamespaceInEntityName();

// Add Azure Service Bus
distributedIntegrations.UseAzureServiceBus("<azure-connection-string>");

// this should be called before builder.Build(), or before exiting ConfigureServices method
distributedIntegrations.Finalize();

Refer to the Event PubSub Library, MassTransit Integration Library for more details on how to configure the event messages, request/response messages and how to implement handlers for them.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2025.0.10-preview-581 165 11/11/2025
2025.0.10-preview-559 165 10/29/2025
2025.0.10-preview-557 165 10/27/2025
2025.0.9 166 10/26/2025
2025.0.9-preview-553 153 10/26/2025
2025.0.9-preview-539 102 10/12/2025
2025.0.9-preview-535 158 10/8/2025
2025.0.9-preview-509 177 10/2/2025
2025.0.9-preview-508 163 10/2/2025
2025.0.9-preview-487 182 9/29/2025
2025.0.9-preview-481 167 9/29/2025
2025.0.9-preview-473 138 9/28/2025
2025.0.8 178 9/23/2025
2025.0.6 172 9/22/2025
2025.0.6-preview-455 179 9/22/2025
2025.0.6-preview-454 286 9/17/2025
2025.0.6-preview-441 139 9/14/2025
2025.0.6-preview-440 126 9/14/2025
2025.0.6-preview-406 165 9/2/2025
2025.0.6-preview-401 156 9/2/2025
2025.0.6-preview-400 148 9/2/2025
2025.0.6-preview-369 210 8/27/2025
2025.0.6-preview-368 187 8/27/2025
2025.0.6-preview-334 166 8/18/2025
2025.0.6-preview-333 149 7/27/2025
2025.0.6-preview-332 492 7/24/2025
2025.0.6-preview-331 501 7/24/2025
2025.0.6-preview-328 491 7/24/2025
2025.0.6-preview-327 350 7/21/2025
2025.0.6-preview-326 353 7/21/2025
2025.0.6-preview-325 250 7/20/2025
2025.0.6-preview-324 251 7/20/2025
2025.0.6-preview-322 255 7/20/2025
2025.0.6-preview-321 247 7/19/2025
2025.0.6-preview-320 257 7/19/2025
2025.0.6-preview-319 160 7/17/2025
2025.0.6-preview-317 158 7/17/2025
2025.0.6-preview-316 158 7/17/2025
2025.0.6-preview-315 162 7/17/2025
2025.0.6-preview-314 148 7/17/2025
2025.0.6-preview-313 152 7/17/2025
2025.0.6-preview-312 160 7/16/2025
2025.0.5 177 7/10/2025
2025.0.5-preview-307 99 7/5/2025
2025.0.4 93 7/5/2025
2025.0.4-preview-305 110 7/4/2025
2025.0.4-preview-304 172 7/1/2025
2025.0.4-preview-299 153 5/31/2025
2025.0.4-preview-298 123 5/30/2025
2025.0.4-preview-296 160 5/30/2025
2025.0.4-preview-295 165 5/29/2025
2025.0.4-preview-293 171 5/26/2025
2025.0.4-preview-292 162 5/26/2025
2025.0.3 142 2/10/2025
2025.0.3-preview-288 138 2/10/2025
2025.0.2 133 1/21/2025
2025.0.2-preview-278 107 1/21/2025
2025.0.2-preview-277 129 12/16/2024
2025.0.1-rc-243301701 394 11/25/2024
2024.0.14.6 141 11/25/2024
2024.0.14.6-rc-243031001 209 10/29/2024
2024.0.14.6-rc-243030701 135 10/29/2024
2024.0.14.6-rc-242840501 125 10/10/2024
2024.0.14.6-rc-242820305 129 10/8/2024
2024.0.14.6-rc-242771401 222 10/3/2024
2024.0.14.6-rc-242770501 129 10/3/2024
2024.0.14.6-rc-242770201 142 10/3/2024
2024.0.14.6-rc-242761801 132 10/2/2024
2024.0.14.6-rc-242761601 142 10/2/2024
2024.0.14.6-rc-242761501 134 10/2/2024
2024.0.14.6-rc-242761401 143 10/2/2024
2024.0.14.6-rc-242760701 146 10/2/2024
2024.0.14.6-rc-242751002 121 10/1/2024
2024.0.14.6-rc-242750901 152 10/1/2024
2024.0.14.6-rc-242750502 132 10/1/2024
2024.0.14.6-rc-242750201 133 10/1/2024
2024.0.14.6-rc-242741501 128 9/30/2024
2024.0.14.6-rc-242730701 147 9/29/2024
2024.0.14.6-preview-2730501 108 9/29/2024
2024.0.14.6-preview-2701501 161 9/26/2024
2024.0.14.6-preview-2620901 175 9/18/2024
2024.0.14.6-preview-2570701 139 9/13/2024
2024.0.14.6-preview-2510703 191 9/7/2024
2024.0.14.6-preview-2480501 141 9/4/2024
2024.0.14.6-preview-2430401 154 8/30/2024
2024.0.14.6-preview-242730701 114 9/29/2024
2024.0.14.6-preview-2421703 123 8/29/2024
2024.0.14.6-preview-2421701 130 8/29/2024
2024.0.14.6-preview-2420901 128 8/29/2024
2024.0.14.6-preview-2390101 141 8/26/2024
2024.0.14.6-preview-2381603 158 8/25/2024
2024.0.14.6-preview-2341601 176 8/21/2024
2024.0.14.6-preview-2321602 153 8/20/2024
2024.0.14.6-preview-2190801 161 8/6/2024
2024.0.14.6-preview-2041501 131 7/22/2024
2024.0.14.6-preview-1920603 199 7/10/2024
2024.0.14.6-preview-1920301 135 7/10/2024
2024.0.14.6-preview-1911302 146 7/9/2024
2024.0.14.6-preview-1901001 167 7/8/2024
2024.0.14.6-preview-1900901 143 7/8/2024
2024.0.14.6-preview-1900801 133 7/8/2024
2024.0.14.6-preview-1860304 133 7/4/2024
2024.0.14.5 197 7/1/2024
2024.0.14.5-preview-1811601 134 6/29/2024
2024.0.14.5-preview-1810501 167 6/29/2024
2024.0.14.5-preview-180132 134 6/28/2024
2024.0.14.5-preview-180131 136 6/28/2024
2024.0.14.5-preview-180121 118 6/28/2024
2024.0.14.4 158 6/27/2024
2024.0.14.4-preview-7 134 6/27/2024
2024.0.14.3 154 6/21/2024
2024.0.14.1 152 6/6/2024
2024.0.14.1-preview 132 6/6/2024
2024.0.14-preview-1 142 6/6/2024
2024.0.13.8-preview 140 6/6/2024
2024.0.13.1-preview-0146 161 6/6/2024
2024.0.12.15803-preview-03 134 6/6/2024
2024.0.12.15608 148 6/4/2024
2024.0.12.15515 229 6/3/2024
2024.0.12.15220 139 5/31/2024
2024.0.12.15220-alpha31-240... 129 5/31/2024
2024.0.12.14911 192 5/28/2024
2024.0.12.14910-alpha28-240... 140 5/28/2024
2024.0.12.14823 182 5/27/2024
2024.0.12.14522-alpha7-2405... 151 5/24/2024
2024.0.12.14514-alpha6-2405... 144 5/24/2024
2024.0.12.14511 155 5/24/2024
2024.0.12.14314 210 5/22/2024
2024.0.12.14114 206 5/20/2024