How can I log to file in Asp.Net 5 RC1? I couldn't find any solution with Microsoft.Extensions.Logging. Is there any solution which is compatible with .Net Core 5 (DNX Core 5.0)? I also was trying to use Serilog but Serilog doesn't support core 5 yet.
Asp.Net 5 (core) RC1: How to log to file (rolling file logging) [DNX Core 5 compatible solution]?
6.6k Views Asked by stratever At
2
There are 2 best solutions below
0

Serilog.Extensions.Logging.File package is an easy way to add file logging to ASP.Net Core application (.NET Core 2.0 is supported in the latest version, which is pre-release at the moment).
- Plugs in as ASP.NET Core logging provider
- Provides a subset of Serilog functionality, specifically for logging to the file system.
- Automatically pulls other Serilog packages as needed.
https://github.com/serilog/serilog-extensions-logging-file
https://www.nuget.org/packages/Serilog.Extensions.Logging.File
To use Serilog in your ASP.NET 5 RC1 project, add the following dependencies in your project.json file:
Create the logger in the
Startup
constructor:and add Serilog in the
Startup.Configure
method: