Initially, I had a different XSD definition for each XSD . I had a set of XML files.
After some length of time there are some changes in the definition of XSD , so my saved XML no longer validates the new XSD .
For support, I need to write XSLT and make changes to my saved XML to validate the new XSD again.
Now in this scenario, every time the XSD changes, I need to write XSLT manually, how can I dynamically generate this XSLT . p>
Currently, I can compare old and new XSDs and get a list of changes using the Microsoft.XmlDiffPatch DLL .
Based on these changes, I need to generate XSLT using C #.
source share