Reputation: 32380
I understand that the .net XsltCompiledTransformation
class supports only XSLT 1.0 transformations and Microsoft has no plans to even introduce support for XSLT 2.0.
I've looked at software for performing XSLT 2.0 transformations.
The problem is that I need an alternative to Microsoft's XsltCompiledTransformation
class that will apply transformations on the fly in my program.
Is there a solution out there that does what I want? An open-source solution would be great, but a commercial solution could be acceptable, too.
Upvotes: 6
Views: 5032
Reputation: 25034
Saxon is available for .NET and supports XSLT 2.0. See http://www.saxonica.com/products/products.xml
Upvotes: 3