XLibur.Report 0.200.0

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

XLibur.Report

Report templating for XLibur.

Author a report as an ordinary .xlsx template — placeholder expressions, named ranges and tag markers — bind .NET data to it, and generate the finished workbook. Charts, pivot tables and pictures survive range expansion.

using var template = new XLTemplate("SalesReport.xlsx");
template.AddVariable("Company", "Contoso");
template.AddVariable("Items", sales);
var result = template.Generate();
template.SaveAs("SalesReport-2026.xlsx");

The template expression language is Scriban, with XLibur's Excel function library bridged in, so {{ SUM(items.Price) }} and {{ ROUND(item.Price, 2) }} work inside {{ }} expressions.

To run templates written in ClosedXML.Report's C# expression syntax instead, install XLibur.Report.DynamicLinq and pass its engine to the template.

Licensed under the MIT License. Portions adapted from ClosedXML.Report (MIT) — see NOTICE.

Product 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.  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 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 (1)

Showing the top 1 NuGet packages that depend on XLibur.Report:

Package Downloads
XLibur.Report.DynamicLinq

See release notes https://github.com/XLibur/XLibur/releases/tag/report-v0.200.0 ClosedXML.Report expression-syntax compatibility for XLibur.Report. Runs templates written with C# expressions, lambdas and LINQ inside {{ }} — the syntax ClosedXML.Report used — by plugging a second expression engine into XLibur.Report. Install it only if you have such templates; XLibur.Report's own Scriban engine needs nothing from here.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.200.0 88 8/1/2026