xslt 1.4.2
See the version list below for details.
dotnet tool install --global xslt --version 1.4.2
dotnet new tool-manifest
dotnet tool install --local xslt --version 1.4.2
#tool dotnet:?package=xslt&version=1.4.2
nuke :add-package xslt --version 1.4.2
xslt
Command-line XSLT 3.0/4.0 processor for .NET. Transform XML documents from the terminal using the PhoenixmlDb XSLT engine.
Installation
dotnet tool install -g xslt
Usage
# Transform XML with a stylesheet
xslt stylesheet.xsl input.xml
# Write output to a file
xslt -o result.html report.xsl data.xml
# Start from a named template (no source needed)
xslt -it main generate.xsl
# Pass parameters
xslt -p year=2026 -p title="Report" style.xsl data.xml
# Read source from stdin
cat data.xml | xslt transform.xsl
# Show timing breakdown
xslt --timing style.xsl large-input.xml
# Validate a stylesheet without running
xslt --dry-run style.xsl
# Stream large files (lower memory)
xslt --stream style.xsl large-input.xml
Features
- XSLT 3.0/4.0 — packages, streaming, maps/arrays, higher-order functions, JSON output
- Multiple output methods — XML, HTML, XHTML, text, JSON, adaptive
- Streaming — process large files without loading into memory
- xsl:result-document — generate multiple output files in one transform
- Parameters — pass values from the command line
- Timing — built-in performance profiling
- Tracing — log template matching, function calls, and built-in rules
Documentation
Full documentation at phoenixml.dev
License
Apache-2.0
| Product | Versions 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. |
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.4.16 | 53 | 6/30/2026 |
| 1.4.15 | 60 | 6/25/2026 |
| 1.4.14 | 68 | 6/22/2026 |
| 1.4.13 | 63 | 6/21/2026 |
| 1.4.12 | 66 | 6/19/2026 |
| 1.4.11 | 68 | 6/18/2026 |
| 1.4.10 | 70 | 6/17/2026 |
| 1.4.9 | 63 | 6/17/2026 |
| 1.4.8 | 84 | 6/16/2026 |
| 1.4.7 | 77 | 6/15/2026 |
| 1.4.6 | 64 | 6/14/2026 |
| 1.4.5 | 62 | 6/10/2026 |
| 1.4.4 | 68 | 6/9/2026 |
| 1.4.3 | 68 | 6/6/2026 |
| 1.4.2 | 68 | 6/4/2026 |
| 1.4.1 | 63 | 6/2/2026 |
| 1.4.0 | 71 | 6/1/2026 |
| 1.3.23 | 68 | 5/29/2026 |
| 1.3.22 | 79 | 5/23/2026 |
| 1.3.21 | 75 | 5/22/2026 |
Two Martin Honnen 2026-06-04 reports fixed.
Fix: xsl:output method='json' indent='yes' now emits pretty-printed JSON (was emitting compact regardless). SerializeItemAsJson threads an indent flag through its recursive calls.
Fix: xsl:for-each-group with group-by under streaming mode no longer emits empty {} + raw text leak. StreamingSubtreeBufferDetector now recognizes for-each-group at template body level (not just inside xsl:fork) and requests a subtree buffer for group-by patterns over the matched subtree.
Conformance: streaming sweep 1898 → 1967 / 2358 (+69 since 1.4.1) via cluster-1 outermost/innermost recognition.
Perf: minor reduction in GC churn via XdmText pool in StreamingXmlProcessor.
See RELEASES.md for full notes.