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

Download  Support Forum 

File Details

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

Description

It contains MSI of Aspose.Tasks for .NET 23.10 release.

File Details

Streamline your .NET project management applications with the power-packed Aspose.Tasks for .NET 23.10 (MSI) release! This update equips you with enhanced Primavera XER handling, improved project saving flexibility, and bug fixes to ensure a seamless development experience.

Key Highlights

  • Streamlined Primavera XER Handling: Developers can specify character encoding during file import for accurate data representation.
  • Enhanced Project Formatting: This release lets users leverage a simplified SimpleSaveOptions class for intuitive project formatting across various file types.
  • Improved Data Integrity: Enforced validation ensures Project.Calendar points to a valid calendar within the project, maintaining data consistency.
  • Baseline Project Access for Primavera XML: With Aspose.Tasks for .NET 23.10, you can explore baseline project details and costs within Primavera XML files for comprehensive project analysis.
  • Additional Refinements: Users can benefit from various improvements and bug fixes for a more robust 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