Enigmatry.Entry.TemplatingEngine.Fluid
9.4.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Enigmatry.Entry.TemplatingEngine.Fluid --version 9.4.0
NuGet\Install-Package Enigmatry.Entry.TemplatingEngine.Fluid -Version 9.4.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="Enigmatry.Entry.TemplatingEngine.Fluid" Version="9.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Enigmatry.Entry.TemplatingEngine.Fluid" Version="9.4.0" />
<PackageReference Include="Enigmatry.Entry.TemplatingEngine.Fluid" />
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 9.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Enigmatry.Entry.TemplatingEngine.Fluid, 9.4.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.
#:package Enigmatry.Entry.TemplatingEngine.Fluid@9.4.0
#: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=9.4.0
#tool nuget:?package=Enigmatry.Entry.TemplatingEngine.Fluid&version=9.4.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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.
-
net9.0
- Enigmatry.Entry.Core (>= 9.4.0)
- FluentValidation (>= 12.1.1)
- Fluid.Core (>= 2.31.0)
- JetBrains.Annotations (>= 2025.2.4)
- MediatR (= 12.4.1)
- Microsoft.Extensions.DependencyInjection (>= 9.0.11)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Logging (>= 9.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Options (>= 9.0.11)
- Serilog (>= 4.3.0)
- Shouldly (>= 4.3.0)
- System.ComponentModel.Annotations (>= 5.0.0)
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.3 | 0 | 6/1/2026 |
| 10.2.3-preview.4 | 0 | 6/1/2026 |
| 10.2.2 | 240 | 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 | 62 | 4/16/2026 |
| 10.0.0 | 111 | 4/2/2026 |
| 9.6.0 | 111 | 3/18/2026 |
| 9.5.0 | 411 | 1/26/2026 |
| 9.4.0 | 325 | 12/22/2025 |
| 9.3.1-preview.3 | 253 | 12/18/2025 |
| 9.3.1-preview.1 | 173 | 11/25/2025 |
| 9.3.0 | 605 | 11/10/2025 |
| 9.2.0 | 498 | 9/24/2025 |
| 9.1.1-preview.5 | 223 | 8/8/2025 |
| 9.1.1-preview.4 | 151 | 6/27/2025 |
| 8.3.1-preview.1 | 154 | 12/24/2025 |
| 8.3.0 | 301 | 12/23/2025 |
| 8.2.0 | 223 | 9/24/2025 |
Loading failed