Skip to content

4lexKislitsyn/Notepad.Extensions.Logging

 
 

Repository files navigation

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 window.
  2. Run your application.

Source Material

Inspired by this tweet:

About

.NET logging to Notepad

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%