Enigmatry.Entry.TemplatingEngine.Fluid 10.2.2

dotnet add package Enigmatry.Entry.TemplatingEngine.Fluid --version 10.2.2
                    
NuGet\Install-Package Enigmatry.Entry.TemplatingEngine.Fluid -Version 10.2.2
                    
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="Enigmatry.Entry.TemplatingEngine.Fluid" Version="10.2.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Enigmatry.Entry.TemplatingEngine.Fluid" Version="10.2.2" />
                    
Directory.Packages.props
<PackageReference Include="Enigmatry.Entry.TemplatingEngine.Fluid" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Enigmatry.Entry.TemplatingEngine.Fluid --version 10.2.2
                    
#r "nuget: Enigmatry.Entry.TemplatingEngine.Fluid, 10.2.2"
                    
#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.
#:package Enigmatry.Entry.TemplatingEngine.Fluid@10.2.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Enigmatry.Entry.TemplatingEngine.Fluid&version=10.2.2
                    
Install as a Cake Addin
#tool nuget:?package=Enigmatry.Entry.TemplatingEngine.Fluid&version=10.2.2
                    
Install as a Cake Tool

Fluid template building block

Building Block with startup extensions for a fluid templating engine.

Registration

You can use the AddFluidTemplateEngine extension method on IServiceCollection to add a fluid template engine to the IoC container. This extension method will also configure the fluid template engine and fluid template provider:

public void ConfigureServices(IServiceCollection services)
{
    ...
    services.AddFluidTemplateEngine();
}

FluidTemplateEngineOptions

Optionally, you can also register custom options for the fluid template engine:

var options = new FluidTemplateEngineOptions
{
    MemberNameStrategy = MemberNameStrategies.SnakeCase,
    CultureInfo = CultureInfo.GetCultureInfo("nl-NL"),
    TimeZoneInfo = TimeZoneInfo.Utc,
    ValueConverters =
    [
        value => value is Enum e ? new StringValue(e.GetDescription()) : null,
        value => value is DateTimeOffset dateTime
            ? TimeZoneInfo.ConvertTimeFromUtc(dateTime.UtcDateTime.ToUniversalTime(), TimeZoneInfo.Utc)
                .ToString("dd-MM-yyyy HH:mm:ss", CultureInfo.GetCultureInfo("nl-NL"))
            : null
    ]
};
services.AddSingleton(Options.Create(options));

Default values are:

var options = new FluidTemplateEngineOptions
{
    MemberNameStrategy = MemberNameStrategies.CamelCase,
    CultureInfo = CultureInfo.InvariantCulture,
    TimeZoneInfo = TimeZoneInfo.Local,
    ValueConverters = new List<Func<object, object>>()
};
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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
10.2.2 235 4/27/2026
10.2.1-preview.1 57 4/27/2026
10.1.0 99 4/16/2026
10.0.1 90 5/19/2026
10.0.1-preview.2 61 4/16/2026
10.0.0 109 4/2/2026
9.6.0 111 3/18/2026
9.5.0 409 1/26/2026
9.4.0 325 12/22/2025
9.3.1-preview.3 252 12/18/2025
9.3.1-preview.1 173 11/25/2025
9.3.0 604 11/10/2025
9.2.0 498 9/24/2025
9.1.1-preview.5 223 8/8/2025
9.1.1-preview.4 150 6/27/2025
9.1.1-preview.3 177 6/4/2025
9.1.0 512 6/3/2025
8.3.1-preview.1 154 12/24/2025
8.3.0 296 12/23/2025
8.2.0 223 9/24/2025
Loading failed