CascadeFlow.NServiceBus.Framework 1.5.0

dotnet add package CascadeFlow.NServiceBus.Framework --version 1.5.0
                    
NuGet\Install-Package CascadeFlow.NServiceBus.Framework -Version 1.5.0
                    
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="CascadeFlow.NServiceBus.Framework" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CascadeFlow.NServiceBus.Framework" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="CascadeFlow.NServiceBus.Framework" />
                    
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 CascadeFlow.NServiceBus.Framework --version 1.5.0
                    
#r "nuget: CascadeFlow.NServiceBus.Framework, 1.5.0"
                    
#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 CascadeFlow.NServiceBus.Framework@1.5.0
                    
#: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=CascadeFlow.NServiceBus.Framework&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=CascadeFlow.NServiceBus.Framework&version=1.5.0
                    
Install as a Cake Tool

CascadeFlow.NServiceBus.Framework

Zero-config telemetry for NServiceBus 8.x endpoints on .NET Framework 4.7.2+.

Installation

Install-Package CascadeFlow.NServiceBus.Framework

Quick Start

That's it! Once installed, the package automatically registers telemetry behaviors via INeedInitialization. No code changes required.

By default, telemetry is sent to http://localhost:5100.

Requirements

  • .NET Framework 4.7.2 or later
  • NServiceBus 8.x

For .NET Core / .NET 5+

Use the CascadeFlow.NServiceBus package instead, which targets modern .NET with NServiceBus 9.x.

Configuration

Environment Variables (Zero-Config)

Variable Default Description
CASCADE_COLLECTOR_URL http://localhost:5100 Collector API URL
CASCADE_ENDPOINT_NAME Auto-detected Endpoint identifier
CASCADE_HOST_ID Machine name Host/instance identifier
CASCADE_ENABLED true Set to false to disable
CASCADE_API_KEY (none) API key for authentication (if collector requires it)

Explicit Configuration

var endpointConfiguration = new EndpointConfiguration("MyEndpoint");

endpointConfiguration.UseCascade(options =>
{
    options.CollectorUrl = "http://localhost:5100";
    options.EndpointName = "MyEndpoint";
    options.HostId = "instance-1";
    options.IncludeHeaders = true;
    options.BufferSize = 1000;
    options.ApiKey = "csk_your-api-key"; // If collector requires authentication
});

Disable Telemetry

endpointConfiguration.DisableCascade();
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 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
1.5.0 124 1/9/2026
1.4.0 116 1/8/2026
1.3.0 118 1/8/2026
1.2.0 117 1/6/2026
1.0.1-dev.3 77 1/6/2026
1.0.0 125 1/4/2026