I have installed the latest version of aspose tasks and have run across a problem with part of our existing working code. We have a unit test that checks for zero resources and yet when instantiating a new project it now seems to have an empty collection of 1 resource where as previously we could check for is null or empty.
Aspose.Tasks version 22.5.0
The line of code that is adding the resource is the creation of the object
Aspose.Tasks.Project mSProject = new Aspose.Tasks.Project();
The unit test now fails
Assert.That(mSPlan.Resources, Is.Null.Or.Empty);
Please could you tell me if this by design or a bug ?
Thanks