When we import the attached MPP file, we are getting “Index was outside the bounds of the array”
static void Main(string[] args)
{
new Aspose.Tasks.License().SetLicense("Aspose.Tasks.lic");
string fileName = @"TRACERS 20201225 - SwRI V2.2.mpp";
using (FileStream fs = File.OpenRead(fileName))
{
Project project;
try
{
project = new Project(fs);
}
catch (Exception exception)
{
Console.WriteLine(exception.Message);
}
}
}
TRACERS 20201225 - SwRI V2.2.zip (1.0 MB)