XLibur.Report
0.200.0
dotnet add package XLibur.Report --version 0.200.0
NuGet\Install-Package XLibur.Report -Version 0.200.0
<PackageReference Include="XLibur.Report" Version="0.200.0" />
<PackageVersion Include="XLibur.Report" Version="0.200.0" />
<PackageReference Include="XLibur.Report" />
paket add XLibur.Report --version 0.200.0
#r "nuget: XLibur.Report, 0.200.0"
#:package XLibur.Report@0.200.0
#addin nuget:?package=XLibur.Report&version=0.200.0
#tool nuget:?package=XLibur.Report&version=0.200.0
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 | 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. 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. |
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 |