yaakov-h / Notepad.Extensions.Logging

.NET logging to Notepad

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Notepad.Extensions.Logging

NuGet

This is a library for .NET / .NET Core to log your program's output to a handy Notepad window!

Installation

To use:

  1. Add a package reference to Notepad.Extensions.Logging.
  2. In Startup.cs, call AddNotepad(), like so:
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
    services.AddControllersWithViews();
    
    // ...
    
    services.AddLogging(lb => lb.AddNotepad()); // This is where the magic happens
}
  1. Open a new Notepad, Notepad++, or Notepad2 window.
  2. Run your application.

Source Material

Inspired by this tweet:

About

.NET logging to Notepad

License:Other


Languages

Language:C# 100.0%