TCIS.AspNetCore.Diagnostics 1.0.0-rc.10

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

TCIS.AspNetCore.Diagnostics

A library that provides middleware and diagnostic tools to enrich Trace information (OpenTelemetry) for ASP.NET Core applications in the TCIS ecosystem. It helps catch all unhandled exceptions and attaches context to distributed tracing for easier monitoring and debugging.

📦 Installation

dotnet add package TCIS.AspNetCore.Diagnostics

🚀 Usage

Middleware Configuration (Program.cs)

You need to register this middleware at the beginning of the HTTP pipeline to ensure it can catch all exceptions generated by subsequent middlewares.

using TCIS.AspNetCore.Diagnostics;

var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();

// Add Exception handling and OpenTelemetry enrichment into the pipeline.
// Should be placed as early as possible.
app.UseTDiagnostics();

// ... other middlewares (Routing, Auth, etc.)
app.Run();

⚙️ Core Components

When calling UseTDiagnostics(), the application will automatically register:

  1. TTraceEnrichmentMiddleware: Runs before the exception handler to append identity information (such as User ID, Tenant ID) into the Trace context.
  2. TExceptionMiddleware: Catches unhandled exceptions, logs them, and appends error details into the current Trace before returning a standardized HTTP Response.
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
1.0.0-rc.10 32 7/24/2026
1.0.0-rc.9 39 7/21/2026
1.0.0-rc.8 42 7/21/2026
1.0.0-rc.7 45 7/17/2026
1.0.0-rc.6 52 7/7/2026
1.0.0-rc.5 58 7/7/2026
1.0.0-rc.4 61 6/24/2026
1.0.0-rc.2 61 5/12/2026
1.0.0-rc.1 65 5/12/2026