CWDev.StaticFileOptionsExtender
2.0.2
See the version list below for details.
dotnet add package CWDev.StaticFileOptionsExtender --version 2.0.2
NuGet\Install-Package CWDev.StaticFileOptionsExtender -Version 2.0.2
<PackageReference Include="CWDev.StaticFileOptionsExtender" Version="2.0.2" />
paket add CWDev.StaticFileOptionsExtender --version 2.0.2
#r "nuget: CWDev.StaticFileOptionsExtender, 2.0.2"
// Install CWDev.StaticFileOptionsExtender as a Cake Addin #addin nuget:?package=CWDev.StaticFileOptionsExtender&version=2.0.2 // Install CWDev.StaticFileOptionsExtender as a Cake Tool #tool nuget:?package=CWDev.StaticFileOptionsExtender&version=2.0.2
Static File Options Extender
Purpose:
- Enable .NET applications to serve static files which have been compressed via
gzip
and/orbrotli
compression algorithms, correctly mapping their original file's content-types and response headers. - Allow user to extend the Options Class to add additional compression types and configure mappings.
To Use:
- Leverage the package's
static using
directive* - Call the package's
GetOptions
method as the argument toUseStaticFiles(...)
*
this will pass the extendedStaticFileOptions
while building the request pipeline.
using static CWDev.StaticFileOptionsExtender; // <-- *
var builder = WebApplication.CreateBuilder(args);
// ...
var app = builder.Build();
// ...
app.UseStaticFiles(GetOptions()); // <-- *
Abstract:
.NET WebApplicationBuilder
can be leveraged to configure the application HTTP Request Pipeline.
Within that Pipeline StaticFileMiddleware
can be used to serve static files.
Typically, the app.UseStaticFiles(StaticFileOptions options)
middleware configures a few key
steps. This library is mostly concerned with TWO -- Providers and Handlers -- regarding:
- Mapping files
content-types
:IContentTypeProvider StaticFileOptions.ContentTypeProvider
*
- Adding or changing the response headers:
Action<StaticFileResponseContext> StaticFileOptions.OnPrepareResponse
*
StaticFileOptions StaticFileOptionsExtender.GetOptions
public static StaticFileOptions GetOptions()
{
var customFileTypeProvider = new CustomContentTypeProvider();
return new StaticFileOptions
{
ContentTypeProvider = customFileTypeProvider, // <-- *
OnPrepareResponse = (StaticFileResponseContext context) => // <-- *
{
if (CompressionEncodings.TryGetValue(Path.GetExtension(context.File.Name), out string? encoding))
{
context.Context.Response.Headers.ContentEncoding = encoding;
}
}
};
}
Specifically, StaticFileOptionsExtender
leverages a class inheriting from IContentTypeProvider
to extend the MIME type mappings for the 380 most commonly used file types (default).
This library originally was built to enable .NET to serve static files which have been compressed for WebGL
by building from Unity.
Overview:
Release-Notes:
- CHANGELOG
- The format is based on Keep a Changelog and this project adheres to Semantic Versioning
- Commits follow Conventional Commits patterns
Contribute:
- Please open a GitHub Issue with concerns.
- Open a PR if you have a code proposal.
- I will respond in
<=24
hours with thoughts and/or solution.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- Microsoft.AspNetCore.StaticFiles (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.