ActDim.Emitron.Razor 1.0.10

dotnet add package ActDim.Emitron.Razor --version 1.0.10
                    
NuGet\Install-Package ActDim.Emitron.Razor -Version 1.0.10
                    
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="ActDim.Emitron.Razor" Version="1.0.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ActDim.Emitron.Razor" Version="1.0.10" />
                    
Directory.Packages.props
<PackageReference Include="ActDim.Emitron.Razor" />
                    
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 ActDim.Emitron.Razor --version 1.0.10
                    
#r "nuget: ActDim.Emitron.Razor, 1.0.10"
                    
#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 ActDim.Emitron.Razor@1.0.10
                    
#: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=ActDim.Emitron.Razor&version=1.0.10
                    
Install as a Cake Addin
#tool nuget:?package=ActDim.Emitron.Razor&version=1.0.10
                    
Install as a Cake Tool

ActDim.Emitron.Razor

ActDim.Emitron.Razor is a Roslyn-powered Razor template compilation and execution engine for .NET built on top of ActDim.Emitron.

Features

  • Full Razor Template Support: Render complex dynamic templates containing HTML, Plain Text, @if / @else conditionals, @foreach / @for loops, code blocks @{ ... }, and comments @* ... *@.
  • Model Property Access: Reference properties seamlessly via @Model.PropertyName or @params.PropertyName.
  • Powered by Roslyn & Emitron: Templates are transpiled into optimized C# scripts and compiled directly into memory using Roslyn Scripting with thread-safe delegate caching.
  • Fluent String Extensions: Render templates directly using template.FormatRazor(model) or pre-compile using template.CompileRazor().

Quick Start Example

using ActDim.Emitron.Razor;
using ActDim.Emitron.Razor.Extensions;

string razorTemplate = """
<h1>Welcome @Model.Name!</h1>
@if (Model.IsVip) {
    <p>Status: <strong>VIP Customer</strong></p>
} else {
    <p>Status: Regular Member</p>
}

<ul>
@foreach (var item in Model.Items) {
    <li>@item</li>
}
</ul>
""";

var model = new
{
    Name = "Alice",
    IsVip = true,
    Items = new[] { "Laptop", "Mouse", "Keyboard" }
};

// Compile and format in one step (cached on subsequent calls)
string output = razorTemplate.FormatRazor(model);

Console.WriteLine(output);

License

MIT License.

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
1.0.10 34 8/26/2026