I'm attempting to debug an XSL using Liquid Studio 2020 Community Edition.
In my XSL definition tag, I included a reference to schemas-microsoft-com.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
exclude-result-prefixes="msxsl"
xmlns:cs="urn:cs">
However further down in the document, I have a section that looks like this:
<xsl:variable name="AllBreakRecords" >
<Export>
<xsl:for-each select="msxsl:node-set($AllRecords)//Record">
Liquid Studio is complaining that it "Cannot find a 1-argument function named {urn:schemas-microsoft-com:xslt}node-set()". Sorry I am new to this tool and haven't touched XSL in years so I'm a bit rusty in that also. But it seems like my document should have what it needs to execute this function, provided that Liquid Studio supports it. I did not author the XSL document but have inherited it ;-)