Visual Studio中不支持XSLT 2.0

Visual Studio中不支持XSLT 2.0

问题描述:

我使用的Visual Studio 2010。在得到以下错误

i am using visual studio 2010 . when running xslt2.0 in that getting below errors

的xsl:value-of的/ * **尚未实现

xsl:value-of/* ** is not yet implemented.

的xsl:结果文档'**尚未实现。

'xsl:result-document'** is not yet implemented.

任何一个可以帮助我reslove上述问题

can any one help me to reslove the above issues

如果你想使用XSLT 2.0,你需要从XslCompiledTransform切换到像撒克逊9或类似AltovaXML或类似XmlPrime .NET版本的XSLT 2.0处理器。微软的XslCompiledTransform是一个XSLT 1.0处理器,即使是在.NET 4.5 / VS 2012

If you want to use XSLT 2.0 you need to switch from XslCompiledTransform to an XSLT 2.0 processor like the .NET version of Saxon 9 or like AltovaXML or like XmlPrime. Microsoft's XslCompiledTransform is an XSLT 1.0 processor, even in .NET 4.5/VS 2012.

然而命名的XSLT处理器主要是允许您使用XSLT 2.0编写代码,我不ŧ认为,他们在2010年整合VS

However the named XSLT processors mainly allow you to write code using XSLT 2.0, I don't think they integrate in VS 2010.