What is the current state of XSLT 2.0 availability within .NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:19:02Z http://stackoverflow.com/feeds/question/831300 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/831300/what-is-the-current-state-of-xslt-2-0-availability-within-net 4 What is the current state of XSLT 2.0 availability within .NET Jay Stevens 2009-05-06T19:28:18Z 2009-05-06T20:44:32Z <p>The latest I can find from the web and blogosphere indicate that Microsoft's XML team would be <a href="http://blogs.msdn.com/xmlteam/archive/2007/01/29/xslt-2-0.aspx" rel="nofollow" title="from Microsoft XML Team blog">supporting XSLT 2.0 (now that it was a full blown W3C recommendation)</a>. I can't find anything beyond that. </p> <p>What's the current status? Is it available in .NET 3.5 or are they stuck with XSLT 1.1 and pushing XQUERY and LINQ?</p> http://stackoverflow.com/questions/831300/what-is-the-current-state-of-xslt-2-0-availability-within-net/831321#831321 3 Answer by divo for What is the current state of XSLT 2.0 availability within .NET divo 2009-05-06T19:33:45Z 2009-05-06T20:44:32Z <p>It is not supported by Microsoft and there hasn't been any anouncement I'm aware of. Where did you hear about that?</p> <h3>UPDATE (after you added the link to the XML Team Blog):</h3> <p>It seems that Microsoft changed their strategy according to <a href="http://blogs.msdn.com/xmlteam/archive/2007/11/16/chris-lovett-interview.aspx" rel="nofollow">this interview</a> with Chris Lovett, a Program Manager on the XML team at Microsoft, later the same year, so it's all about LINQ:</p> <blockquote> <p>As for XSLT 2.0 - we’ve heard from customers and understand the improvements in XSLT 2.0 over XSLT 1.0, but right now we’re in the middle of a big strategic investment in LINQ and EDM for the future of the data programming platform which we think will create major improvements in programming against all types of data. But we are always re-evaluating our technology investments so if your readers want to ramp up their volume on XSLT 2.0 please ask them to drop us a line with their comments.</p> </blockquote> <p>If you want to use XSLT/XPath 2.0 with .NET you could use <a href="http://sourceforge.net/projects/saxondotnet/" rel="nofollow"><strong>Saxon.NET</strong></a>. However, this is just the Java version of Saxon running inside IKVM. It has a significant size in the range of 30 MB and when I tried it the performance did not seem overwhelming (This was a very basic test though so the result might be different with a typical stylesheet). </p>