Aspose.Tasks for .NET 20.9.1 Release Notes

All Changes

KeySummaryIssue Type
TASKSNET-4435Disable recalculation of Tsk.Cost and Tsk.FixedCost in manual calculation modeEnhancement
TASKSNET-4416Review Metered license and update the credit charge algorithmEnhancement

Changes in Metered licenses

For Metered license the credit charging logic have been modified in the following way:

  1. For each loading or creation of a project instance the customer is charged with 1 credit.
  2. For large files, every 20MB file chunk, after the first 20MB, will incur an additional one credit surcharge.
  3. Save operation is not charged
Project p = new Project(); // New project is created: 1 credit is charged
Project p2 = new Project("test project"); // Project is opened from file: 1 credit is charged and 1 credit for every 20MB file chunk, after the first 20MB
p2.Save("output.mpp", SaveFileFormat.MPP); // no credit is charged
p2.Save("output.pdf", SaveFileFormat.PDF); // no credit is charged