Serilog.Sinks.WinForms.Core 1.0.3

dotnet add package Serilog.Sinks.WinForms.Core --version 1.0.3
NuGet\Install-Package Serilog.Sinks.WinForms.Core -Version 1.0.3
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.WinForms.Core" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Serilog.Sinks.WinForms.Core --version 1.0.3
#r "nuget: Serilog.Sinks.WinForms.Core, 1.0.3"
#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.WinForms.Core as a Cake Addin
#addin nuget:?package=Serilog.Sinks.WinForms.Core&version=1.0.3

// Install Serilog.Sinks.WinForms.Core as a Cake Tool
#tool nuget:?package=Serilog.Sinks.WinForms.Core&version=1.0.3

Writes Serilog events to Windows Froms Application TextBox or Datagridview control from anywhere in your application.

Getting started

Install the Serilog.Sinks.WinForms.Core package from NuGet:

Install-Package Serilog.Sinks.WinForms.Core

To configure the sink in C# code, call WriteToSimpleAndRichTextBox() or WriteToJsonTextBox() or WriteToGridView() during logger configuration:

Simple Text Formatted Log And Rich TextBox Log Control

SimpleLogTextBox or RichTextBoxLogControl can be used from visual studio toolbox once the package is added to the project.

Log.Logger = new LoggerConfiguration()
                        .WriteToSimpleAndRichTextBox()
                        .CreateLogger();

SimpleLogTextBox or RichTextBoxLogControl with custom Configuration. SimpleLogTextBox accepts ITextFormatter

Log.Logger = new LoggerConfiguration()
                        .WriteToSimpleAndRichTextBox(new MessageTemplateTextFormatter("{Timestamp} [{Level}] {Message} {Exception}"))
                        .CreateLogger();
Json Formatted Log

JsonLogTextBox can be used from visual studio toolbox once the package is added to the project.

Log.Logger = new LoggerConfiguration()
                        .WriteToJsonTextBox()
                        .CreateLogger();

JsonLogTextBox with custom Configuration. JsonLogTextBox accepts ITextFormatter

Log.Logger = new LoggerConfiguration()
                        .WriteToJsonTextBox(new JsonFormatter())
                        .CreateLogger();
Datagridview Log

GridLog can be used from visual studio toolbox once the package is added to the project.

Log.Logger = new LoggerConfiguration()
                        .WriteToGridView()
                        .CreateLogger();
Log For Context

SimpleLogTextBox, RichTextBoxLogControl or JsonLogTextBox can be configured to display log for specific Context. All of the controls have property For Context which can be configured with namespace.classname

Note: Remember to configure Logger instance with Enrich.FromLogContext()

Save and Clear Logs

SimpleLogTextBox, RichTextBoxLogControl or JsonLogTextBox have two method available for saving log to file or clear the log from the log control. ClearLogs() AND SaveLogToFile()

Sample Code

Find the sample running application here

Product Compatible and additional computed target framework versions.
.NET net5.0-windows7.0 is compatible.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0-windows 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.
  • net5.0-windows7.0

  • net6.0-windows7.0

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.3 4,694 9/2/2022
1.0.2 4,266 4/8/2022
1.0.1 409 4/8/2022
1.0.0 424 4/4/2022