VS2005 XSLT Debugging with external functions?

Hi

Currently we use visualxslt a plugin that does xslt debugging in vs2003 but from the look of it vs2005's version works a little nicer but.. .

We extensively use EXSLT.net, which is a custom xslt processor that inherirts the .net one and adds new functions for xslt. It there anyway to get VS2005 to use this custom assebly to debug with

Thanks
Brian Norman


Answer this question

VS2005 XSLT Debugging with external functions?

  • sapaplanus

    We will be releasing EXSLT.NET for .NET 2.0 really soon, in a week or so. Then you will be able to debug your stylesheets in VS 2005 for sure.

    Obviously you would need to start debugging from code, by stepping into Transform() method.



  • Denis-D

    Its a shame we cant just choose the processor like we can at the moment in VisualXLT, that is without having to run it through the code just giving it the assembly.

    Brian

  • Glenn N.

    The VS2005 XSLT debugger is based on on the fact that the XSLT is being compiled down to MSIL instructions for execution by the Common Language Runtime.  Any .NET extensions you call from your XSLT can be debugged so long as you have the symbols (.pdb files).  Embedded msxsl:script blocks can also be debugged.  Because of this dependency on MSIL generation, the VS 2005 XSLT debugger does not support plugging in different XSLT processors.
  • VS2005 XSLT Debugging with external functions?