TCIS.AspNetCore.SignalR 1.0.0-rc.10

This is a prerelease version of TCIS.AspNetCore.SignalR.
dotnet add package TCIS.AspNetCore.SignalR --version 1.0.0-rc.10
                    
NuGet\Install-Package TCIS.AspNetCore.SignalR -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.SignalR" 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.SignalR" Version="1.0.0-rc.10" />
                    
Directory.Packages.props
<PackageReference Include="TCIS.AspNetCore.SignalR" />
                    
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.SignalR --version 1.0.0-rc.10
                    
#r "nuget: TCIS.AspNetCore.SignalR, 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.SignalR@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.SignalR&version=1.0.0-rc.10&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=TCIS.AspNetCore.SignalR&version=1.0.0-rc.10&prerelease
                    
Install as a Cake Tool

TCIS.AspNetCore.SignalR

A library that supports the integration and standardization of SignalR in projects within the TCIS ecosystem. It provides default Hub Filters to help with error handling, connection management, and automatic context attachment for Real-time connections.

📦 Installation

dotnet add package TCIS.AspNetCore.SignalR

🚀 Usage

1. Register Services (Program.cs)

Use the AddTSignalR extension method instead of .NET's default AddSignalR to automatically configure THubFilter.

using TCIS.AspNetCore.SignalR.Extensions;

var builder = WebApplication.CreateBuilder(args);

// Register SignalR with standard TCIS configuration (automatically adds THubFilter)
builder.Services.AddTSignalR();

// Or if you need to configure additional HubOptions:
// builder.Services.AddTSignalR(options => {
//     options.EnableDetailedErrors = true;
// });

var app = builder.Build();

// Map the application's Hubs
// app.MapHub<MyCustomHub>("/hubs/my-hub");

app.Run();

⚙️ Core Components

  • AddTSignalR: Automatically configures SignalR and adds THubFilter to all Hubs. THubFilter helps standardize error handling, logging, and setting up necessary information during connections and Hub method invocations.
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 0 7/24/2026
1.0.0-rc.9 31 7/21/2026
1.0.0-rc.8 37 7/21/2026
1.0.0-rc.7 48 7/17/2026
1.0.0-rc.6 50 7/7/2026
1.0.0-rc.5 55 7/7/2026