Did you actually merge the xml output into the build file using the merge publisher? If you are sure the XSL is correct this is your most likely candidate. Open up the actual build results xml folder and make sure your sandcastle XML is in their with everything else.
On Oct 5, 5:51 am, tboloo <[EMAIL PROTECTED]> wrote: > I'm trying to merge Sandcastle Help File Builder log file into > dashboard. I've created xsl stylesheet, > > <?xml version="1.0" encoding="ISO-8859-1"?> > <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/ > Transform"> > <xsl:template match="/"> > <html> > <body> > <h2>Sandcastle Help Builder log</h2> > <table border="1"> > <tr bgcolor="#9acd32" align="center"> > <td>Product</td> > <td>Version</td> > <td>Project File</td> > </tr> > <tr> > <td><xsl:value-of > select="/shfbBuild/@product"/></td> > <td><xsl:value-of > select="/shfbBuild/@version"/></td> > <td><xsl:value-of > select="/shfbBuild/@projectFile"/></td> > </tr> > </table> > <br /> > <table border="1"> > <tr bgcolor="#9acd32" align="center"> > <td colspan="2">Build steps</td> > </tr> > <xsl:for-each select="/shfbBuild/buildStep"> > <tr> > <td><xsl:value-of > select="@step"/></td> > <td><xsl:value-of select="." > /></td> > </tr> > </xsl:for-each> > </table> > </body> > </html> > </xsl:template> > </xsl:stylesheet> > > which works fine when eg. shown in IE, or in Stylus studio, with > example reporthttp://btekielski.googlepages.com/SandcastleHFB.xml > however, in dashboard is not populated with data from report (ie shows > only table headers). > I think I might have missed something, but I don't know what this > could be :/
