Serilog.Sinks.AspNetCore.App.SignalR 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Serilog.Sinks.AspNetCore.App.SignalR --version 1.1.1                
NuGet\Install-Package Serilog.Sinks.AspNetCore.App.SignalR -Version 1.1.1                
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="Serilog.Sinks.AspNetCore.App.SignalR" Version="1.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.AspNetCore.App.SignalR --version 1.1.1                
#r "nuget: Serilog.Sinks.AspNetCore.App.SignalR, 1.1.1"                
#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.
// Install Serilog.Sinks.AspNetCore.App.SignalR as a Cake Addin
#addin nuget:?package=Serilog.Sinks.AspNetCore.App.SignalR&version=1.1.1

// Install Serilog.Sinks.AspNetCore.App.SignalR as a Cake Tool
#tool nuget:?package=Serilog.Sinks.AspNetCore.App.SignalR&version=1.1.1                

Usage

Call the IServiceCollection extension method AddSerilogHub to register a SignalR Hub with the Serilog sink. This step is necessary in order to prevent circular dependencies caused during logger initialization.

builder.Services.AddSerilogHub<SampleHub>();

Call AddSerilog and configure the Hub in which events should be logged to. Make sure to pass the IServiceProvider down to the SignalR sink. The delegate provides the IHubContext for the Hub specified in the generic type parameter of the SignalR sink and the formatted Serilog event message.

builder.Services.AddSerilog(
    (serviceProvider, loggerConfiguration) => 
        loggerConfiguration.WriteTo.SignalR<SampleHub>(
            serviceProvider, 
            (context, message, logEvent) => 
                context.Clients.All.SendAsync("Receive", message, logEvent)
        ));

Lastly, make sure to register the Hub.

app.MapHub<SampleHub>("/sample");
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. 
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.2.1 68 11/20/2024
1.2.0 1,252 6/15/2024
1.1.1 121 6/7/2024
1.1.0 134 6/6/2024
1.0.0 138 6/6/2024
0.0.2 114 6/1/2024
0.0.1 124 6/1/2024