Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change the XSLT debugger's input file?

I'm trying to debug an XSLT file and I've gotten the Visual Studio debugger to run and prompt for an input file. Unfortunately, when I debug the file again, the same test file is loaded from before.

How can I change the input file for the XSLT debugger? I've done some searching, but all the help materials assume this is your first run of the debugger.

like image 914
derekerdmann Avatar asked Mar 26 '12 14:03

derekerdmann


People also ask

How do I debug a XSLT file?

To start debugging an XSLT applicationPress F11 to step into the XSLT code. The XSLT style sheet is loaded in a new document window and the XSLT debugger starts. Alternatively, you can add a break point to the style sheet and run your application.

How do I debug an XML file?

Select the XSL and XML files you want to work with and click Debug > XSL Transformation from the pop-up menu. If you want to transform an XML file or debug an XSL file and indicate specific information about the transformation or debugging process, you should create a Run or Debug configuration.


1 Answers

When an XSLT file is the active document in Visual Studio, an Input field becomes available in the properties pane. You can put the path to your XML test file in this field:

enter image description here

like image 119
Frédéric Hamidi Avatar answered Sep 22 '22 05:09

Frédéric Hamidi