Nefarius.Utilities.AspNetCore 2.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Nefarius.Utilities.AspNetCore --version 2.3.0
NuGet\Install-Package Nefarius.Utilities.AspNetCore -Version 2.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nefarius.Utilities.AspNetCore" Version="2.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nefarius.Utilities.AspNetCore --version 2.3.0
#r "nuget: Nefarius.Utilities.AspNetCore, 2.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Nefarius.Utilities.AspNetCore as a Cake Addin
#addin nuget:?package=Nefarius.Utilities.AspNetCore&version=2.3.0

// Install Nefarius.Utilities.AspNetCore as a Cake Tool
#tool nuget:?package=Nefarius.Utilities.AspNetCore&version=2.3.0

Nefarius.Utilities.AspNetCore

My opinionated collection of utilities for ASP.NET Core applications.

Features

  • Sets up application (and optionally web requests) logging with Serilog
  • Sets up application log file rotation and compression
  • Sets up W3C logging to a separate access log file
    • Compresses rolled W3C log files and allows for their own retention settings
  • Sets up forwarded headers and auto-configures local networks so the correct client IP ends up in logs and middleware
    • ⚠️ This assumes that your app sits behind a reverse proxy, do not enable this setting if your app faces the Internet directly or header spoofing becomes possible!
  • ... and more as I start incorporating this lib in my projects!

How to use

Replace 👇

WebApplicationBuilder builder = WebApplication.CreateBuilder(args);

with 👇

WebApplicationBuilder builder = WebApplication.CreateBuilder(args).Setup();

and 👇

WebApplication app = builder.Build();

with 👇

WebApplication app = builder.Build().Setup();

and you're all set! 👏 The Setup extension methods take optional configuration arguments you can provide to alter the default behaviour.

Example configurations

From code

Enable and customize W3C log compression

The following settings use the library defaults, they're simply explained here and don't need to be exclusively set if you're satisfied with the defaults 😉

var builder = WebApplication.CreateBuilder().Setup(options =>
{
    // this will only keep three most recent uncompressed log files
    options.W3C.RetainedFileCountLimit = 3;
    // on rotation, make a compressed archive copy before deleting the original
    options.W3C.CompressDeletedLogFiles = true;
    // keeps the last 90 compressed log files on top of the original files
    // after this, even the compressed logs are finally deleted from disk
    options.W3C.RetainedCompressedFileCountLimit = 90;
});

From appsettings.json

You can also alter the defaults from your configuration; simply stick to the options classes and property naming conventions like so:

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    }
  },
  "WebApplicationBuilderOptions": {
    "AutoDetectPrivateNetworks": false
  },
  "WebApplicationOptions": {
    "UseForwardedHeaders": false
  }
}

Bear in mind that changing the same option in code will take priority over application configuration.

From docker-compose.yml

Using this format you can change the settings directly in the compose file:

...
    environment:
      - TZ=Europe/Vienna
      - WebApplicationBuilderOptions__W3C__RetainedCompressedFileCountLimit=600
      - WebApplicationBuilderOptions__W3C__RetainedFileCountLimit=12
...

3rd party credits

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.3.0 379 3/8/2024
2.2.3 86 3/6/2024
2.2.2 197 2/25/2024
2.2.1 206 2/19/2024
2.2.0 403 1/13/2024
2.1.0 71 1/13/2024
2.0.0 80 1/11/2024
1.16.0 337 12/7/2023
1.15.0 220 11/19/2023
1.14.0 106 11/17/2023
1.13.0 126 11/17/2023
1.12.0 101 11/17/2023
1.11.0 389 9/16/2023
1.10.1 117 9/13/2023
1.10.0 112 9/13/2023
1.9.1 112 9/12/2023
1.8.4 291 8/7/2023
1.8.3 598 4/30/2023
1.8.0 149 4/30/2023
1.7.3-pre 107 4/30/2023
1.7.2-pre 107 4/30/2023
1.7.1 153 4/29/2023
1.7.0 156 4/29/2023
1.6.1 159 4/28/2023
1.6.0 151 4/27/2023
1.5.1 146 4/27/2023
1.5.0 152 4/27/2023
1.4.2 143 4/27/2023
1.4.1 553 1/24/2023
1.4.0 318 1/5/2023
1.3.0 276 1/4/2023
1.0.1 278 1/4/2023
1.0.0-pre 138 1/4/2023