derekerdmann
derekerdmann

Reputation: 18252

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.

Upvotes: 47

Views: 9594

Answers (1)

Frédéric Hamidi
Frédéric Hamidi

Reputation: 262979

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

Upvotes: 70

Related Questions