Nefarius.Utilities.AspNetCore
2.0.0
Prefix Reserved
See the version list below for details.
dotnet add package Nefarius.Utilities.AspNetCore --version 2.0.0
NuGet\Install-Package Nefarius.Utilities.AspNetCore -Version 2.0.0
<PackageReference Include="Nefarius.Utilities.AspNetCore" Version="2.0.0" />
paket add Nefarius.Utilities.AspNetCore --version 2.0.0
#r "nuget: Nefarius.Utilities.AspNetCore, 2.0.0"
// Install Nefarius.Utilities.AspNetCore as a Cake Addin #addin nuget:?package=Nefarius.Utilities.AspNetCore&version=2.0.0 // Install Nefarius.Utilities.AspNetCore as a Cake Tool #tool nuget:?package=Nefarius.Utilities.AspNetCore&version=2.0.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 | Versions 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. |
-
net6.0
- IPNetwork2 (>= 2.6.618)
- MonoMod.RuntimeDetour (>= 25.1.0-prerelease.2)
- Serilog.AspNetCore (>= 8.0.0)
- Serilog.Sinks.File.Archive (>= 1.0.4)
- SharpZipLib (>= 1.4.2)
-
net7.0
- IPNetwork2 (>= 2.6.618)
- MonoMod.RuntimeDetour (>= 25.1.0-prerelease.2)
- Serilog.AspNetCore (>= 8.0.0)
- Serilog.Sinks.File.Archive (>= 1.0.4)
- SharpZipLib (>= 1.4.2)
-
net8.0
- IPNetwork2 (>= 2.6.618)
- MonoMod.RuntimeDetour (>= 25.1.0-prerelease.2)
- Serilog.AspNetCore (>= 8.0.0)
- Serilog.Sinks.File.Archive (>= 1.0.4)
- SharpZipLib (>= 1.4.2)
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.5.0 | 39 | 11/13/2024 | |
2.4.0 | 110 | 11/8/2024 | |
2.4.0-pre001 | 67 | 11/8/2024 | |
2.3.1 | 118 | 10/29/2024 | |
2.3.0 | 1,902 | 3/8/2024 | |
2.2.3 | 116 | 3/6/2024 | |
2.2.2 | 228 | 2/25/2024 | |
2.2.1 | 234 | 2/19/2024 | |
2.2.0 | 423 | 1/13/2024 | |
2.1.0 | 86 | 1/13/2024 | |
2.0.0 | 94 | 1/11/2024 | |
1.16.0 | 355 | 12/7/2023 | |
1.15.0 | 253 | 11/19/2023 | |
1.14.0 | 133 | 11/17/2023 | |
1.13.0 | 147 | 11/17/2023 | |
1.12.0 | 114 | 11/17/2023 | |
1.11.0 | 425 | 9/16/2023 | |
1.10.1 | 143 | 9/13/2023 | |
1.10.0 | 144 | 9/13/2023 | |
1.9.1 | 148 | 9/12/2023 | |
1.8.4 | 324 | 8/7/2023 | |
1.8.3 | 631 | 4/30/2023 | |
1.8.0 | 178 | 4/30/2023 | |
1.7.3-pre | 137 | 4/30/2023 | |
1.7.2-pre | 131 | 4/30/2023 | |
1.7.1 | 167 | 4/29/2023 | |
1.7.0 | 187 | 4/29/2023 | |
1.6.1 | 191 | 4/28/2023 | |
1.6.0 | 180 | 4/27/2023 | |
1.5.1 | 176 | 4/27/2023 | |
1.5.0 | 186 | 4/27/2023 | |
1.4.2 | 164 | 4/27/2023 | |
1.4.1 | 585 | 1/24/2023 | |
1.4.0 | 346 | 1/5/2023 | |
1.3.0 | 312 | 1/4/2023 | |
1.0.1 | 292 | 1/4/2023 | |
1.0.0-pre | 159 | 1/4/2023 |