Serilog.Sinks.MFilesSysUtilsEventLog 1.1.0

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

// Install Serilog.Sinks.MFilesSysUtilsEventLog as a Cake Tool
#tool nuget:?package=Serilog.Sinks.MFilesSysUtilsEventLog&version=1.1.0

A Serilog sink to use in an M-Files Vault Application to write to the Windows EventLog using the SysUtils.ReportXToEventLog() helpers.

Use case

An Vault Application is an addon for an M-Files Vault which has been created using the M-Files Vault Application Framework. The currently only supported way of logging is using the SysUtils Event Log reporting helper.

The Serilog.Sinks.MFilesSysUtilsEventLog sink makes it possible to use Serilog structured logging in a Vault Application. For more information about Serilog, see Serilog.net and https://github.com/serilog/serilog.

Log.Logger = new LoggerConfiguration()
    .WriteTo.MFilesSysUtilsEventLogSink()
    .CreateLogger();

Log.Information("Hello from the Vault Application");
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  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
2.3.623.9 531 5/3/2022
2.3.623.6 500 1/26/2022
2.3.623.2 327 10/24/2021
1.1.1 406 6/11/2021
1.1.0 360 6/2/2021
1.0.0 345 6/1/2021

Adding support for ITextFormatter, for example the RenderedCompactJsonFormatter.