Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Tasks for .NET 22.12

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 22.91MB
  • Date Added:
  • 12/12/2022

Description

It contains MSI with Aspose.Tasks for .NET 22.12 release.

File Details

This API release offers enhancements to the link creation between cross-project tasks for MS Project®:

The following example demonstrates how to create a cross-project task link:

Project project = new Project();
var summary = project.RootTask.Children.Add("Summary Task");

Task t2 = t2 = summary.Children.Add("External Task");
t2.Set(Tsk.ExternalTaskProject, "ExternalProject.mpp");
t2.Set(Tsk.ExternalId, 1);
t2.Set(Tsk.ExternalUid, 2); // External task's Unique Id should be set.
t2.Set(Tsk.IsExternalTask, true);
t2.Set(Tsk.IsManual, new NullableBool(false));
t2.Set(Tsk.IsSummary, false);

Task t = summary.Children.Add("Task");
TaskLink link = project.TaskLinks.Add(t2, t);
link.IsCrossProject = true;
link.LinkType = TaskLinkType.FinishToStart;
link.CrossProjectName = "ExternalProject.mpp\\\\1"; // <- here external task's Id is used.

New LinkLagTimeSpan Property

A new property LinkLagTimeSpan property has been added to the TaskLink. This property gets or sets the lag duration, depending on the LagFormat.

Cost Calculations for Multiple Rates

Enhancements have been made in making cost calculations for the case where multiple rates are effective on a particular day.

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Tasks for .NET 22.12 Release Notes.

 English