Files starting with <?xml version="1.0"?>
are no longer rendered by Aspose.Words 22.5. Why?
In 22.4 this code was working fine. For input file use any xml.
var doc = new Document(inputFile)
var saveOptions = new PdfSaveOptions
{
PageSet = new PageSet(new PageRange(0, doc.PageCount))
};
doc.Save(outputFile, saveOptions);
In the release notes I saw some changes for XML files. Should I change my code?
Best Regards,
Vassil