BridgingIT.DevKit.Infrastructure.Azure.ServiceBus 10.0.104-preview.0.7

This is a prerelease version of BridgingIT.DevKit.Infrastructure.Azure.ServiceBus.
dotnet add package BridgingIT.DevKit.Infrastructure.Azure.ServiceBus --version 10.0.104-preview.0.7
                    
NuGet\Install-Package BridgingIT.DevKit.Infrastructure.Azure.ServiceBus -Version 10.0.104-preview.0.7
                    
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="BridgingIT.DevKit.Infrastructure.Azure.ServiceBus" Version="10.0.104-preview.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BridgingIT.DevKit.Infrastructure.Azure.ServiceBus" Version="10.0.104-preview.0.7" />
                    
Directory.Packages.props
<PackageReference Include="BridgingIT.DevKit.Infrastructure.Azure.ServiceBus" />
                    
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 BridgingIT.DevKit.Infrastructure.Azure.ServiceBus --version 10.0.104-preview.0.7
                    
#r "nuget: BridgingIT.DevKit.Infrastructure.Azure.ServiceBus, 10.0.104-preview.0.7"
                    
#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 BridgingIT.DevKit.Infrastructure.Azure.ServiceBus@10.0.104-preview.0.7
                    
#: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=BridgingIT.DevKit.Infrastructure.Azure.ServiceBus&version=10.0.104-preview.0.7&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BridgingIT.DevKit.Infrastructure.Azure.ServiceBus&version=10.0.104-preview.0.7&prerelease
                    
Install as a Cake Tool

bITDevKit

Empowering developers with modular components for modern application development, centered around Domain-Driven Design principles.

Our goal is to empower developers by offering modular components that can be easily integrated into your projects. Whether you're working with repositories, commands, queries, or other components, the bITDevKit provides flexible solutions that can adapt to your specific needs.

This repository includes the complete source code for the bITDevKit, along with a variety of sample applications located in the ./examples folder within the solution. These samples serve as practical demonstrations of how to leverage the capabilities of the bITDevKit in real-world scenarios. All components are available as nuget packages.

For the latest updates and release notes, please refer to the CHANGELOG.

Join us in advancing the world of software development with the bITDevKit!

Azure Service Bus Messaging (Broker implementation)

Getting Stared: https://azuresdkdocs.blob.core.windows.net/$web/dotnet/Azure.Messaging.ServiceBus/7.14.0/index.html Research: https://chat.openai.com/share/90316478-d295-4c7b-9e8f-4861ca39097e

Topics are useful in publish/subscribe scenarios. alternate text is missing from this package README image

*** standard tier is necessary to use topics

Sending (Sender per topic):

  • use ServiceBusClient to communicate with Azure Service Bus
  • create a sender to send messages to a topic (messagename)
    await using var client = new ServiceBusClient(connectionString);
    ServiceBusSender sender = client.CreateSender(topicName);
    await sender.SendMessageAsync(message);
  • topic needs to be created on the fly (ManagementClient)
    ManagementClient managementClient = new ManagementClient(connectionString);
    TopicDescription topicDescription = await managementClient.GetTopicAsync(topicName);

Receiving (Processor per topic):

    var processor = client.CreateProcessor(topicName, subscriptionName);

when the number of topics is undefined (onsubscribe), you can dynamically create and register multiple processors for each topic

using Azure.Messaging.ServiceBus;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        string connectionString = "<your-connection-string>";
        List<string> topicNames = GetTopicNames(); // Get a list of topic names dynamically

        // Create the ServiceBusClient
        ServiceBusClient serviceBusClient = new ServiceBusClient(connectionString);

        try
        {
            List<ServiceBusProcessor> processors = new List<ServiceBusProcessor>();

            // Create and register a processor for each topic
            foreach (string topicName in topicNames)
            {
                ServiceBusProcessor processor = serviceBusClient.CreateProcessor(topicName, subscriptionName);

                processor.ProcessMessageAsync += async args =>
                {
                    var message = args.Message;
                    try
                    {
                        // Process the message here
                        Console.WriteLine($"Received message from topic '{topicName}': {message.Body}");

                        // Complete the message to remove it from the subscription
                        await args.CompleteMessageAsync(message);
                    }
                    catch (Exception ex)
                    {
                        // Handle any exceptions that occur during message processing
                        Console.WriteLine($"Error processing message: {ex}");
                        await args.AbandonMessageAsync(message);
                    }
                };

                processors.Add(processor);
                await processor.StartProcessingAsync();
            }

            Console.WriteLine("Receiving messages... Press any key to stop.");
            Console.ReadKey();

            // Stop processing messages and close the processors
            foreach (var processor in processors)
            {
                await processor.StopProcessingAsync();
                await processor.CloseAsync();
            }
        }
        catch (Exception ex)
        {
            // Handle any exceptions
            Console.WriteLine($"Exception: {ex.Message}");
        }
        finally
        {
            // Close the ServiceBusClient
            await serviceBusClient.DisposeAsync();
        }
    }

    static List<string> GetTopicNames()
    {
        // Implement the logic to dynamically fetch the topic names
        // For example, retrieve topic names from a configuration source or a data store
        // and return them as a list
        List<string> topicNames = new List<string>();
        // Add your logic to populate the topicNames list
        return topicNames;
    }
}

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
10.0.104-preview.0.7 31 3/23/2026
10.0.104-preview.0.2 37 3/20/2026
10.0.104-preview.0.1 31 3/19/2026
10.0.103 78 3/19/2026
10.0.102 96 2/25/2026
10.0.101 89 2/20/2026
10.0.101-preview.0.1 50 2/20/2026
10.0.100 96 2/20/2026
10.0.2-preview.0.92 53 2/20/2026
10.0.2-preview.0.91 54 2/20/2026
10.0.2-preview.0.90 47 2/20/2026
10.0.2-preview.0.89 51 2/20/2026
10.0.2-preview.0.88 46 2/19/2026
10.0.2-preview.0.87 45 2/17/2026
10.0.2-preview.0.86 53 2/17/2026
10.0.2-preview.0.85 51 2/4/2026
10.0.2-preview.0.83 52 1/30/2026
10.0.2-preview.0.82 51 1/20/2026
10.0.2-preview.0.80 49 1/20/2026
9.0.1 86 2/27/2026
Loading failed

# Changelog

This changelog is maintained from version tags in the `main` branch. It covers the full tagged release history on `main`.

## [10.0.103] - 2026-03-19

- Added the new `Application.DataPorter` framework for multi-format import and export.
- Introduced profile-based and attribute-based configuration, validation, streaming, compression, templates, typed row interception, progress reporting, and extensible custom formats.
- Added fluent import, export, and template option builders for a more discoverable API.

## [10.0.102] - 2026-02-25

- Updated core package dependencies including Cosmos, Scalar.AspNetCore, and the test SDK.

## [10.0.101] - 2026-02-20

- Updated the .NET 10 toolchain and package baseline to 10.0.103.

## [10.0.100] - 2026-02-20

- Merged the main .NET 10 update baseline for the SDK and package set.

## [9.0.30] - 2025-12-19

- Updated permission evaluation responses to return collections consistently.
- Added implicit string-to-permission conversion support.
- Performed general maintenance and dependency refresh work.

## [10.0.1] - 2025-11-26

- Added string-based include options and refined permission evaluation behavior.
- Improved permission APIs with implicit string conversion support.
- Refreshed EF Core 10 and related package dependencies.

## [9.0.29] - 2025-11-18

- Refreshed NuGet dependencies.

## [9.0.28] - 2025-11-18

- Added new result operation saga scope helpers and related task extensions for multi-step workflows.
- Continued the `Result<T>`-based workflow improvements around operation scopes.

## [10.0.0] - 2025-11-12

- Started the .NET 10 release line.
- Improved logging and transaction pipeline behavior, especially around EF Core and scoped behavior execution.
- Added requester and notifier authorization pipeline attributes, `ClaimsPrincipal` support for `ICurrentUserAccessor`, and a new CORS configuration feature for presentation projects.

## [9.0.27] - 2025-10-30

- Added tracing support through the new `TracingBehavior` naming and improved job-related logging.
- Refreshed dependencies.

## [9.0.26] - 2025-10-29

- Added a new interactive console command feature and expanded console command support.
- Improved EF permission-provider handling for typed entity IDs.

## [9.0.25] - 2025-10-21

- Refactored authentication configuration into a clearer options model.
- Added JWT authentication extension methods.
- Improved OpenAPI metadata and Scalar integration.

## [9.0.24] - 2025-10-19

- Added richer `ProblemDetails` support including schema and document transformers.
- Improved JSON serialization safety and error handling.
- Tightened confidentiality for token-validation logging.

## [9.0.23] - 2025-10-17

- Added `FilterModel` parsing support for Minimal APIs.
- Standardized `ProblemDetails` and improved result-related error handling and logging.
- Updated dependencies to address security issues.

## [9.0.22] - 2025-10-13

- Changed filter paging defaults so `page = 0` and `pageSize = 0` mean no paging.

## [9.0.21] - 2025-10-09

- Expanded the `Result` API with `Bind` and `BindAsync` methods.
- Updated `DeleteResultAsync` to return both the result and the entity.
- Added `ModuleDbContextFactory` support and continued paging and tracking configuration improvements.

## [9.0.20] - 2025-10-02

- Minor maintenance release focused on internal cleanup and documentation updates.

## [9.0.19] - 2025-10-01

- Added OpenAPI document-generation startup paths and related example integration work.

## [9.0.18] - 2025-09-30

- Improved the `Notifier` and `Requester` builder APIs.
- Added `INotificationHandler` support to `DomainEventHandlerBase`.
- Added a new repository-backed domain-event publisher behavior.

## [9.0.17] - 2025-09-30

- Refined Roslyn generator project setup and refreshed dependencies.

## [9.0.16] - 2025-09-29

- Reduced mediator dependencies in the domain layer and improved result usage in the example application.

## [9.0.15] - 2025-09-28

- Updated the DoFiesta example application.

## [9.0.14] - 2025-09-24

- Removed the `Infrastructure.Azure.HealthChecks` project.

## [9.0.13] - 2025-09-24

- Removed health check support that depended on external packages.

## [9.0.12] - 2025-09-24

- Prepared the codebase for .NET 10 by updating obsolete web and OpenAPI integration points.

## [9.0.11] - 2025-09-23

- Removed the Pulsar message broker integration.

## [9.0.10] - 2025-09-22

- Added a new Active Record capability.
- Added processing jitter support for domain and message outboxes.

## [9.0.9] - 2025-08-19

- Added batched delete support for log maintenance.

## [9.0.8] - 2025-08-07

- Added delay jitter support to the notification outbox.

## [9.0.7] - 2025-08-05

- Follow-up stabilization release with no additional notable user-facing changes beyond `9.0.6`.

## [9.0.6] - 2025-08-05

- Fixed the Quartz configuration key handling.
- Improved `Requester` and `Notifier` performance and supporting infrastructure.
- Continued domain-event handling enhancements.

## [9.0.5] - 2025-07-09

- Maintenance release focused on repository housekeeping and project-structure cleanup.

## [9.0.4] - 2025-07-08

- Improved file compression option handling.
- Refined file-storage decompression defaults based on archive extension.
- Improved CSV and text logging output.

## [9.0.3] - 2025-07-04

- Added support for skipping SMTP server certificate validation.

## [9.0.2] - 2025-07-02

- Updated the framework baseline to .NET 9.

## [9.0.1] - 2025-05-19

- Documentation refresh release for the .NET 9 line.

## [3.0.4] - 2025-01-25

- Added entity permissions and a new identity provider capability.
- Enhanced repository behavior, including concurrency support for Cosmos, EF, and in-memory repositories.
- Renamed `PagedResult` and continued repository reliability improvements.

## [3.0.3] - 2024-10-11

- Improved module matching for inbound HTTP requests.
- Delivered a broad set of tracing and activity-correlation fixes.
- Added a more useful `Result.ToString()` implementation.

## [3.0.2] - 2024-04-25

- Enabled request logging with corrected Serilog setup.
- Applied post-release fixes and workflow cleanup.

## [3.0.1] - 2024-04-25

- Initial tagged release.