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 23.10 (DLLs Only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 22.32MB
  • Date Added:
  • 16/10/2023

Description

It contains Aspose.Tasks for .NET 23.10 (DLLs Only) release.

File Details

Aspose.Tasks for .NET 23.10 (DLLs Only) delivers a set of advancements designed to elevate your project management capabilities within .NET applications. This update introduces functionalities for improved Primavera XER file processing, project baseline management, and provides greater control over project saving.

Key Highlights

  • Primavera XER Precision: Specify encoding during file reading with LoadOptions.Encoding for accurate Primavera XER data handling.
  • Granular Project Saving: Utilize the new SimpleSaveOptions base class for comprehensive control over project saving options in various formats with Aspose.Tasks for .NET 23.10.
  • Project Baseline Management: Users can explore and manage baseline project details within Primavera XML formatted projects.
  • Enhanced API and Bug Fixes: We have integrated valuable API improvements and bug fixes in this release of the .NET API for a more streamlined development experience.

Code Samples

Pass Encoding when Reading Primavera XER Files

This C# code example demonstrates how you can pass encoding while reading Primavera XER files using the project management API:

LoadOptions lo = new LoadOptions();
lo.Encoding = Encoding.GetEncoding(1251);
lo.PrimaveraReadOptions = new PrimaveraReadOptions();
var project = new Project("encoding1251.xer", lo);

Source*

Read Baseline Projects of Primavera XML-format

The following code sample showcases how to read Primavera XML-format baseline projects:

Project project = new Project("BaselineProjects.xml");

Console.WriteLine("Current baseline project uid: " + project.PrimaveraProperties.CurrentBaselineProjectId);

foreach (var baselineProject in project.PrimaveraProperties.BaselineProjects)
{
    Console.WriteLine("Baseline project: uid: {0}, name: '{1}'", baselineProject.Uid, baselineProject.Name);
}

var baseline1 = project.PrimaveraProperties.BaselineProjects[1];

var task = GetTaskByActivityId(project, "A1000");
var baselineTask = GetTaskByActivityId(baseline1, "A1000");

Console.WriteLine("Task budgeted total cost: " + task.PrimaveraProperties.BudgetedTotalCost);
Console.WriteLine("Task baseline budgeted total cost: " + baselineTask.PrimaveraProperties.BudgetedTotalCost);

Source*

Public API and Backwards Incompatible Changes

Added API Members

We have added many new methods and properties in this release. Some of these are:

  • Aspose.Tasks.LoadOptions.Encoding
  • Aspose.Tasks.PrimaveraProjectProperties.CurrentBaselineProjectId
  • Aspose.Tasks.PrimaveraTaskProperties.BudgetedLaborCost
  • Aspose.Tasks.Saving.CsvOptions.View
  • Aspose.Tasks.Saving.SimpleSaveOptions.SaveFormat

Removed API Members

We have removed various methods and properties in this release. Some of these are:

  • Aspose.Tasks.Project.Save(System.String,Aspose.Tasks.Saving.SaveOptions)
  • Aspose.Tasks.Resource.Notes
  • Aspose.Tasks.ResourceAssignment.LevelingDelayFormat
  • Aspose.Tasks.ResourceAssignment.Notes
  • Aspose.Tasks.Saving.SaveOptions.SaveFormat

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Tasks for .NET 23.10 Release Notes.

 English