PhoenixmlDb.Xslt 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package PhoenixmlDb.Xslt --version 2.0.0
                    
NuGet\Install-Package PhoenixmlDb.Xslt -Version 2.0.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="PhoenixmlDb.Xslt" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PhoenixmlDb.Xslt" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="PhoenixmlDb.Xslt" />
                    
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 PhoenixmlDb.Xslt --version 2.0.0
                    
#r "nuget: PhoenixmlDb.Xslt, 2.0.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 PhoenixmlDb.Xslt@2.0.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=PhoenixmlDb.Xslt&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=PhoenixmlDb.Xslt&version=2.0.0
                    
Install as a Cake Tool

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 outputsxsl:result-document for 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.

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 0 9/17/2026
2.0.0 81 9/15/2026
1.8.0 175 9/14/2026
1.7.0 73 9/11/2026
1.6.15 167 9/9/2026
1.6.14 117 9/7/2026
1.6.13 158 9/2/2026
1.6.12 121 8/30/2026
1.6.11 107 8/29/2026
1.6.10 173 8/27/2026
1.6.9 104 8/26/2026
1.6.8 102 8/26/2026
1.6.7 107 8/24/2026
1.6.6 112 8/23/2026
1.6.5 130 8/22/2026
1.6.4 132 8/16/2026
1.6.3 103 8/14/2026
1.6.2 102 8/13/2026
1.6.1 124 8/4/2026
1.6.0 122 7/31/2026
Loading failed

**Major because the train is.** `PhoenixmlDb.Core`, `PhoenixmlDb.XQuery` and `PhoenixmlDb.Xslt`
move to 2.0.0 together for the namespace consolidation. The XSLT engine's own surface is
compatible with 1.8.0 — **what breaks is reaching the extension functions**, and that breaks in
the XQuery layer this engine embeds.

Takes **PhoenixmlDb.XQuery 2.0.0** and **PhoenixmlDb.Core 2.0.0**.

### Breaking — the extension functions moved

A stylesheet reaching the engine's extension functions must now declare:

```xml
xmlns:phx="https://schemas.phoenixml.dev/2026/functions"
```

and call `phx:metadata`, `phx:stem`, `phx:tokenize`, `phx:score`, `phx:is-stop-word` and
`phx:thesaurus-lookup`. The old `ft:` and `dbxml:` namespaces are retired with no aliases, so a
stylesheet using them fails rather than behaving differently. See `PhoenixmlDb.XQuery` 2.0.0 for
the full rename table and the two non-obvious breaks (a host can no longer rebind `phx`, and
metadata providers now receive `Q{uri}local` rather than a prefixed key).

### Fixed

- **`fn:serialize` no longer needs an XSLT-side override.** The override existed because
 `fn:serialize` resolved namespace URIs only for one store type and emitted `xmlns:p=""` for
 everything else — output that would not reparse. XQuery 2.0.0 carries the store-aware
 serializers, so the override is retired rather than maintained in two places.
- **Four defects found by compiling the NEMSIS schematrons**, from the Schematron session.