Skip to content

NLog/NLog.Extensions.Logging

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date
Jun 4, 2020
Apr 6, 2018
May 20, 2020
Nov 23, 2020
Oct 30, 2020
Dec 4, 2017
May 13, 2017
Feb 6, 2016
Aug 27, 2020
Jan 19, 2016
Oct 19, 2019
Jun 8, 2019
May 20, 2020
Dec 6, 2019
Aug 27, 2020
Oct 19, 2017
May 9, 2018
Jan 13, 2019

Repository files navigation

NLog

NLog.Extensions.Logging

NuGet Pre Release Build status

NLog provider for Microsoft.Extensions.Logging; .NET Core. ASP.NET Core users should install NLog.Web.AspNetCore.

Note: Microsoft haven't ported all their classes to .NET standard, so not every target/layout renderer is available. Please check platform support

Getting started

ASP.NET Core

.NET Core Console application

You can choose whether or not to use Dependency Injection when using NLog in a .NET Core Console application. If you don't want to use DI, you can just add the NLog NuGet package to your project, manually add an NLog.config file, follow this tutorial to GetCurrentClassLogger(), and use that for logging.

To use DI, you can use NLog in conjunction with Microsoft.Extensions.Logging by following the 'getting started' tutorial below.

Known issues

  • auto load of NLog extensions won't work yet. Use <extensions> (see docs)

How to run the examples

How to run the dotnet-core-examples:

  1. Install dotnet: http://dot.net
  2. From source: dotnet run