I try to perform xslt transformation using XsltCompiledTransformationclass.
The code is pretty standard.
The problem is when I run on local windows environment everything works as expected but when I try the same on docker I have the next error
System.EntryPointNotFoundException: Entry point was not found.
at System.Collections.Generic.ICollection`1.get_Count()
at <xsl:template name="MyTemplate">(XmlQueryRuntime , IList`1 , IList`1 , IList`1 , IList`1 , String )
Maybe someone had similar error?
for me, setting
enableDebugtotruewhen creating myXslCompiledTransformclass somehow fixes this.I should note my xslt makes use ofIt doesn't seem to matter what is in the XSLT.msxsl:node-setThis feels more like a bug than a proper solution.