VS2012でxsltファイルをデバッグしようとしています。上部で[XML]->[XsltDebugging]をクリックすると、デバッグした前のバージョンからの出力が表示され続けます。それ以来、私はそれに多くの変更を加えましたが、それはそれを反映していません。
これがスクリーンアウトです:
xsltファイルのコード(入力をXMLファイルにポイントしています)
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
</head>
<body>
<xsl:apply-templates select ="CommercialClients">
</xsl:apply-templates>
</body>
</html>
</xsl:template>
<xsl:template match="CommercialClients">
I found some data
</xsl:template>
</xsl:stylesheet>