mirror of
https://github.com/yaakov-h/Notepad.Extensions.Logging.git
synced 2024-11-22 11:14:50 +00:00
Add instructions
This commit is contained in:
parent
4ee15ce1c8
commit
f293b6f256
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
@ -4,6 +4,29 @@
|
|||
|
||||
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:
|
||||
|
||||
```csharp
|
||||
// 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
|
||||
}
|
||||
```
|
||||
|
||||
3. Open a new Notepad window
|
||||
|
||||
## Source Material
|
||||
|
||||
Inspired by [this tweet](https://twitter.com/steveklabnik/status/1263190719721766918):
|
||||
|
||||
![](https://pbs.twimg.com/media/EYfBQ5cXsAEcu2e?format=jpg&name=orig)
|
||||
|
|
Loading…
Reference in a new issue