Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.86 KB

File metadata and controls

47 lines (31 loc) · 1.86 KB

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();