Skip to content

Latest commit

 

History

History

Bet.AspNetCore.Middleware

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Bet.AspNetCore.Middleware

GitHub license Build status NuGet Nuget feedz.io

The second letter in the Hebrew alphabet is the ב bet/beit. Its meaning is "house". In the ancient pictographic Hebrew it was a symbol resembling a tent on a landscape.

Note: Pre-release packages are distributed via feedz.io.

Summary

The collection of AspNetCore Middlewares for Production and Development purposes.

buymeacoffee

Give a Star! ⭐

If you like or are using this project to learn or start your solution, please give it a star. Thanks!

Install

    dotnet add package Bet.AspNetCore.Middleware

Usage

AddDeveloperListRegisteredServices

Development middleware to display all of the DI services that were registered with AspNetCore application.

  1. Add in ConfigureServices
    services.AddDeveloperListRegisteredServices(o =>
    {
        o.PathOutputOptions = PathOutputOptions.Json;
    });
  1. Add in Configure
     app.UseDeveloperListRegisteredServices();