Reputation: 18252
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
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:
Upvotes: 70