PhoenixmlDb.Xslt
1.6.3
dotnet add package PhoenixmlDb.Xslt --version 1.6.3
NuGet\Install-Package PhoenixmlDb.Xslt -Version 1.6.3
<PackageReference Include="PhoenixmlDb.Xslt" Version="1.6.3" />
<PackageVersion Include="PhoenixmlDb.Xslt" Version="1.6.3" />
<PackageReference Include="PhoenixmlDb.Xslt" />
paket add PhoenixmlDb.Xslt --version 1.6.3
#r "nuget: PhoenixmlDb.Xslt, 1.6.3"
#:package PhoenixmlDb.Xslt@1.6.3
#addin nuget:?package=PhoenixmlDb.Xslt&version=1.6.3
#tool nuget:?package=PhoenixmlDb.Xslt&version=1.6.3
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.3.0)
- PhoenixmlDb.XQuery (>= 1.6.1)
-
net8.0
- PhoenixmlDb.Core (>= 1.3.0)
- PhoenixmlDb.XQuery (>= 1.6.1)
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 |
|---|---|---|
| 1.6.3 | 32 | 8/14/2026 |
| 1.6.2 | 36 | 8/13/2026 |
| 1.6.1 | 104 | 8/4/2026 |
| 1.6.0 | 107 | 7/31/2026 |
| 1.5.0 | 126 | 7/27/2026 |
| 1.4.25 | 104 | 7/17/2026 |
| 1.4.24 | 87 | 7/14/2026 |
| 1.4.23 | 129 | 7/12/2026 |
| 1.4.22 | 106 | 7/10/2026 |
| 1.4.21 | 108 | 7/9/2026 |
| 1.4.20 | 101 | 7/9/2026 |
| 1.4.19 | 99 | 7/9/2026 |
| 1.4.18 | 97 | 7/8/2026 |
| 1.4.17 | 103 | 7/7/2026 |
| 1.4.16 | 129 | 6/30/2026 |
| 1.4.15 | 109 | 6/25/2026 |
| 1.4.14 | 114 | 6/22/2026 |
| 1.4.13 | 120 | 6/21/2026 |
| 1.4.12 | 112 | 6/19/2026 |
| 1.4.11 | 113 | 6/18/2026 |
### Fixes
- **A nested `xsl:copy` inside a typed (`as=`) template no longer vanishes from the output, taking a spurious `XTTE0505` with it.** A typed template installs a sequence accumulator, which routes `xsl:copy` of an element down its serialize-then-reparse path: the copy is written to the output buffer, sliced back out, and reparsed into an XDM node inside a synthetic wrapper element. That serialized fragment carries only the namespace declarations it needed *at its position* — any an ancestor already declares are suppressed as redundant — so a **nested** copy reparsed on its own had an undeclared prefix and threw, and the handler had already truncated the buffer: the element was destroyed outright. Validating the declared cardinality against the resulting empty capture then reported `XTTE0505: … expected exactly one item, got 0`. The synthetic wrapper now declares the in-scope namespaces so the fragment stands alone, and the parse-failure fallback restores the markup it truncated instead of dropping it. The failure required all three of a declared `as=` type, nesting, and an `xsl:copy` parent — a literal result element parent uses a different construction path and was unaffected. Reported by Martin Honnen against XSpec 4.0.3 `src/compiler/base/resolve-import/gather/gather-specs.xsl`, which this unblocks: the resolve-import stage sits on the critical path for running XSpec suites at all.