xslt 1.4.5

dotnet tool install --global xslt --version 1.4.5
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local xslt --version 1.4.5
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=xslt&version=1.4.5
                    
nuke :add-package xslt --version 1.4.5
                    

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 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.

This package has no dependencies.

Version Downloads Last Updated
1.4.5 0 6/10/2026
1.4.4 46 6/9/2026
1.4.3 60 6/6/2026
1.4.2 59 6/4/2026
1.4.1 59 6/2/2026
1.4.0 61 6/1/2026
1.3.23 60 5/29/2026
1.3.22 73 5/23/2026
1.3.21 68 5/22/2026
1.3.20 59 5/21/2026
1.3.19 57 5/20/2026
1.3.18 54 5/19/2026
1.3.17 53 5/19/2026
1.3.16 57 5/19/2026
1.3.15 66 5/17/2026
1.3.14 57 5/15/2026
1.3.12 62 5/14/2026
1.3.11 61 5/13/2026
1.3.10 50 5/13/2026
1.3.9 68 5/13/2026
Loading failed

XSLT 4.0 ordered maps: xsl:map, map constructors, records, and JSON-object maps now iterate in entry/insertion order as a structural guarantee (backed by the engine's OrderedXdmMap, requires PhoenixmlDb.XQuery 1.4.3). Grouping into a map emits groups in first-seen order, matching the XML-target equivalent — no "don't rely on it" caveat.
     469/469 XSLT tests green. See RELEASES.md for full notes.