PhoenixmlDb.Xslt
1.1.0.21
dotnet add package PhoenixmlDb.Xslt --version 1.1.0.21
NuGet\Install-Package PhoenixmlDb.Xslt -Version 1.1.0.21
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="1.1.0.21" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PhoenixmlDb.Xslt" Version="1.1.0.21" />
<PackageReference Include="PhoenixmlDb.Xslt" />
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 1.1.0.21
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PhoenixmlDb.Xslt, 1.1.0.21"
#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@1.1.0.21
#: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=1.1.0.21
#tool nuget:?package=PhoenixmlDb.Xslt&version=1.1.0.21
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | 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.
-
net10.0
- PhoenixmlDb.Core (>= 1.0.18)
- PhoenixmlDb.XQuery (>= 1.1.0.33)
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.1.0.21 | 78 | 3/31/2026 |
| 1.1.0.16 | 87 | 3/29/2026 |
| 1.1.0.15 | 87 | 3/29/2026 |
| 1.1.0.12 | 96 | 3/28/2026 |
| 1.1.0.11 | 99 | 3/28/2026 |
| 1.1.0.10 | 101 | 3/27/2026 |
| 1.1.0.9 | 83 | 3/27/2026 |
| 1.1.0.8 | 83 | 3/27/2026 |
| 1.0.47 | 81 | 3/27/2026 |
| 1.0.46 | 84 | 3/27/2026 |
| 1.0.45 | 73 | 3/27/2026 |
| 1.0.44 | 73 | 3/27/2026 |
| 1.0.43 | 74 | 3/27/2026 |
| 1.0.42 | 72 | 3/27/2026 |
| 1.0.41 | 79 | 3/27/2026 |
| 1.0.40 | 77 | 3/26/2026 |
| 1.0.39 | 80 | 3/26/2026 |
| 1.0.38 | 80 | 3/26/2026 |
| 1.0.37 | 73 | 3/26/2026 |
| 1.0.36 | 86 | 3/25/2026 |
Loading failed