Serilog.Sinks.MSBuild
1.5.0
dotnet add package Serilog.Sinks.MSBuild --version 1.5.0
NuGet\Install-Package Serilog.Sinks.MSBuild -Version 1.5.0
<PackageReference Include="Serilog.Sinks.MSBuild" Version="1.5.0" />
paket add Serilog.Sinks.MSBuild --version 1.5.0
#r "nuget: Serilog.Sinks.MSBuild, 1.5.0"
// Install Serilog.Sinks.MSBuild as a Cake Addin
#addin nuget:?package=Serilog.Sinks.MSBuild&version=1.5.0
// Install Serilog.Sinks.MSBuild as a Cake Tool
#tool nuget:?package=Serilog.Sinks.MSBuild&version=1.5.0
A Serilog sink for MSBuild
How to use
using Microsoft.Build.Utilities;
using Serilog;
public class MyTask: Task {
public override bool Execute() {
using (ILogger _logger = new LoggerConfiguration().WriteTo.MSBuild(this).CreateLogger()) {
_logger.Information("Hello from my custom Serilog-powered task");
// [...]
return true;
};
}
}
Important properties
Some Serilog properties carry meaningful information for MSBuild, like message code, file and line and column numbers.
They are covered in Serilog.Sinks.MSBuild.MSBuildMessages
.
Maintainer(s)
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.7.2
- Microsoft.Build.Framework (>= 16.8.0)
- Microsoft.Build.Utilities.Core (>= 16.8.0)
- Serilog (>= 2.0.0)
-
.NETStandard 2.0
- Microsoft.Build.Framework (>= 16.8.0)
- Microsoft.Build.Utilities.Core (>= 16.8.0)
- Serilog (>= 2.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Serilog.Sinks.MSBuild:
Package | Downloads |
---|---|
Sigourney
A lightweight toolkit that helps easily writing .NET assembly weavers. |
|
Codecov.MSBuild
MSBuild task for uploading coverage reports to Codecov |
GitHub repositories
This package is not used by any popular GitHub repositories.
.NET Framework 4.5 and MSBuild versions prior to 15 are no longer supported.
Specifying help links for warnings and errors is now supported through a new logging property.
The translation from Serilog to MSBuild events is streamlined:
Serilog errors and fatals are both mapped as MSBuild errors and treated identically,
and if a Serilog message has an exception, its ToString() representation will be appended to the end.