New generation of Aspose Cloud SDK that allows to manipulate or convert Microsoft Project documents hosted on a cloud platform from .NET applications. It allows you to work with all aspects of a Project document including conversion. The API offers a wide range of Microsoft Project export options. The Aspose.Tasks Cloud API allows developers to convert Project documents to various formats including XML, HTML, BMP, PNG, PDF, and XSLX.
Manipulate MS Project Files in .NET via Cloud REST API
Aspose.Tasks for Cloud offers the ability to manipulate and convert Microsoft Project MPT, MPP, MPX & Oracle Primavera XER, XML, and PrimaveraP6XML files in .NET. Aspose.Tasks Cloud SDK for .NET wraps the REST API to make it easier for the developers to integrate MS Project Task Management features in their own cloud-based .NET applications on Linux, MacOS, Windows or Android.
Enhanced reading data from Primavera-specific task's properties.
Enhancements in Version 25.8
Added new ability to level tasks for the resources.
Provided the ability to clear leveling delay that was previously added to the tasks during resource leveling.
Enhancements in Version 25.4
Enhanced Task model.
Enhanced TaskLink model.
Enhanced ProjectRecalculationResult model.
Enhancements in Version 24.10
Enhanced reading data from Primavera-specific task's properties.
Enhancements in Version 24.4
Added new ability to get views information
Possibility to modify table text styles for Gantt Chart views.
Enhancements in Version 22.12
Added new ability to read Primavera-specific task's properties.
Provided the ability to read more document properties.
Enhancements in Version 20.11
Support for the batch creation of tasks (i.e. the ability to create multiple tasks in a single API call).
Enhancements in Version 20.8
Ability to specify the non-default path for Project Server's PWA URL.
Ability to modify timephasedData collection in assignments.
Enhancements in Version 20.6
Possibility to render comments when saving as image, HTML or PDF.
Option to use username and password to connect Project Online (Server) instead of auth token, incase you don't have it.
Ability to add assignments to your project file along with specifying its cost.
Quickly adding new tasks to project, when calculation mode is set to automatic.
Ability to add project in Microsoft Project Server.
Added support of reading shared resource assignments.
Get Started with Aspose.Tasks Cloud SDK for .NET
Register an account at Aspose Cloud Dashboard to get you application information. Next, execute Install-Package Aspose.Tasks-Cloud from the Package Manager Console in Visual Studio to fetch & reference Aspose.Tasks Cloud SDK .NET assembly in your project. If you already have Aspose.Tasks Cloud SDK for .NET, execute Update-Package Aspose.Tasks-Cloud to get the latest version. You may alternatively install the package from command line as nuget install Aspose.Tasks-Cloud.
Convert MS Project MPP to PDF in .NET
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
var config = new Configuration
{
AppSid = "MY_CLIENT_ID",
AppKey = "MY_CLIENT_SECRET"
};
var tasksApi = new TasksApi(config);
using (var inputStream = new FileStream("some_project.mpp", FileMode.Open))
{
var uploadFileRequest = new PostCreateRequest("some_project.mpp", inputStream);
tasksApi.UploadFile(uploadFileRequest);
}
var request = new GetReportPdfRequest();
request.Name = "some_project.mpp";
request.Type = ReportType.Milestones;
Stream response = await tasksApi.GetReportPdfAsync(request);