PhoenixmlDb.Xslt
1.3.23
See the version list below for details.
dotnet add package PhoenixmlDb.Xslt --version 1.3.23
NuGet\Install-Package PhoenixmlDb.Xslt -Version 1.3.23
<PackageReference Include="PhoenixmlDb.Xslt" Version="1.3.23" />
<PackageVersion Include="PhoenixmlDb.Xslt" Version="1.3.23" />
<PackageReference Include="PhoenixmlDb.Xslt" />
paket add PhoenixmlDb.Xslt --version 1.3.23
#r "nuget: PhoenixmlDb.Xslt, 1.3.23"
#:package PhoenixmlDb.Xslt@1.3.23
#addin nuget:?package=PhoenixmlDb.Xslt&version=1.3.23
#tool nuget:?package=PhoenixmlDb.Xslt&version=1.3.23
PhoenixmlDb.Xslt
XSLT 4.0 transformation engine for PhoenixmlDb — transform XML documents into HTML, JSON, CSV, text, or other XML formats.
Features
- XSLT 3.0/4.0 — template matching, streaming, accumulators, packages, maps/arrays
- All output methods — HTML5, XML, XHTML, JSON, text, CSV, adaptive
- Multiple outputs —
xsl:result-documentfor multi-file generation - Full XPath 4.0 — 240+ built-in functions available in all expressions
- Packages — reusable stylesheet libraries with visibility control
Quick example
using PhoenixmlDb.Xslt;
var transformer = new XsltTransformer();
await transformer.LoadStylesheetAsync(
File.ReadAllText("style.xsl"),
new Uri(Path.GetFullPath("style.xsl")));
transformer.SetParameter("title", "My Report");
var html = await transformer.TransformAsync(
File.ReadAllText("data.xml"));
// Handle secondary outputs (xsl:result-document)
foreach (var (href, content) in transformer.SecondaryResultDocuments)
File.WriteAllText(Path.Combine(outputDir, href), content);
See the full API overview in the README.
Related packages
| Package | Description |
|---|---|
| PhoenixmlDb.Core | Core types and XDM data model (dependency) |
| PhoenixmlDb.XQuery | XQuery 4.0 query engine (dependency) |
| PhoenixmlDb.Xslt.Cli | xslt command-line tool |
Documentation
Full documentation at phoenixml.dev
License
Apache 2.0
| 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 was computed. 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. |
-
net10.0
- PhoenixmlDb.Core (>= 1.1.4)
- PhoenixmlDb.XQuery (>= 1.3.15)
-
net8.0
- PhoenixmlDb.Core (>= 1.1.4)
- PhoenixmlDb.XQuery (>= 1.3.15)
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 |
|---|---|---|
| 2.1.0 | 60 | 9/17/2026 |
| 2.0.0 | 121 | 9/15/2026 |
| 1.8.0 | 204 | 9/14/2026 |
| 1.7.0 | 98 | 9/11/2026 |
| 1.6.15 | 172 | 9/9/2026 |
| 1.6.14 | 120 | 9/7/2026 |
| 1.6.13 | 160 | 9/2/2026 |
| 1.6.12 | 123 | 8/30/2026 |
| 1.6.11 | 109 | 8/29/2026 |
| 1.6.10 | 177 | 8/27/2026 |
| 1.6.9 | 106 | 8/26/2026 |
| 1.6.8 | 104 | 8/26/2026 |
| 1.6.7 | 109 | 8/24/2026 |
| 1.6.6 | 114 | 8/23/2026 |
| 1.6.5 | 132 | 8/22/2026 |
| 1.6.4 | 134 | 8/16/2026 |
| 1.6.3 | 105 | 8/14/2026 |
| 1.6.2 | 105 | 8/13/2026 |
| 1.6.1 | 126 | 8/4/2026 |
| 1.3.23 | 111 | 5/29/2026 |
New: TransformAsync(XmlReader, TextWriter) and TransformAsync(Stream, TextWriter) stream the serialized result incrementally to the caller's sink. Peak working-set delta for a 1M-item streamed identity transform measured at 17.2 MiB (vs. hundreds of MiB to multi-GiB before). Addresses Martin Honnen 2026-05-28 memory report.
New: TransformAsync(Stream, Stream) fast-path skips ReadToEndAsync when the stylesheet's initial mode is streamable; the input Stream is wrapped directly by XmlReader.Create.
New: xsl:for-each with absolute streamable paths inside xsl:source-document now drives the streaming pass per-iteration (was previously evaluating against the synthetic empty document). +4 W3C streaming conformance tests; critical 100% sets held.
See RELEASES.md for full notes.