I am experiencing an exception when trying to open Project files. The exception is:
Exception Type: Aspose.Tasks.TasksReadingException
Exception Message: File reading error.
I am using Aspose.Tasks version 19.9.1.
Here is the code I am using:
using (var stream = new FileStream(fullFilePath, FileMode.OpenOrCreate))
{
try
{
var project = new Project(stream, new LoadOptions());
...
}
catch (Exception e)
{
}
}
Attached are the files I am attempting to open:
TestFiles.zip (5.5 KB)