Aspose.Tasks for C++ is a native class library to help you quickly build C++ apps that can read, write, manipulate, and convert Microsoft Project® file formats (MPP, MPT, MPX, and XML Project Format) without dependency on installing Microsoft Project® or any other 3rd party components. Aspose.Tasks for C++ helps you work with Microsoft Project® formulas, tasks, task links, calendars, calendar exceptions, resources, resource assignment, currencies, and VBA information. You can import and export project data to Primavera file formats (XML, XER, MPX) as well. Aspose.Tasks for C++ offers to convert your project data into a variety of formats, including Excel, HTML, SVG, JPEG, BMP, PDF and more. Aspose.Tasks for C++ distribution package contains both the 32-bit as well as the 64-bit binaries for the MS Windows. The shared libraries for Linux-based OS are also available and are built with CLang. It supports x86 and x64 based applications on Windows and x64 based applications on Linux.
$ dotnet add package Aspose.Tasks.Cpp
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
A standalone C++ library that enables the C++ developers to generate, update, render, & convert project files from within C++ projects without Microsoft Project®.
Aspose.Tasks for C++ is a native class library to help you quickly build C++ apps that can read, write, manipulate, and convert Microsoft Project® file formats (MPP, MPT, MPX, and XML Project Format) without dependency on installing Microsoft Project® or any other 3rd party components.
It helps you work with Microsoft Project® formulas, tasks, task links, calendars, calendar exceptions, resources, resource assignment, currencies, and VBA information. You can import and export project data to Primavera file formats (XML, XER, MPX) as well. Aspose.Tasks for C++ offers to convert your project data into a variety of formats, including Excel, HTML, SVG, JPEG, BMP, PDF and more.
This distribution package contains both the 32-bit as well as the 64-bit binaries for the MS Windows. The shared libraries for Linux and Mac are also available.
MPX files.Microsoft Project: MPP, MPT, XML
Primavera: MPX, P6XML, XER
Microsoft Office: XLSX
Fixed Layout: PDF
Images: TIFF, SVG, PNG, JPEG
Web: HTML
Text: TXT
Are you ready to give Aspose.Tasks for C++ a try? Simply execute Install-Package Aspose.Tasks.Cpp from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Tasks for C++ and want to upgrade the version, please execute Update-Package Aspose.Tasks.Cpp to get the latest version.
Try executing the below code to see how Aspose.Tasks for C++ performs in your environment. You may also check the GitHub Repository for other common usage scenarios.
auto project = System::MakeObject<Project>(u"template.mpp");
auto options = System::MakeObject<HtmlSaveOptions>();
project->Save(u"output.html", options);
// Create a project instance
auto project = System::MakeObject<Project>();
// Add task, sub-task and save the project
auto task = project->get_RootTask()->get_Children()->Add(u"Summary1");
auto subtask = task->get_Children()->Add(u"Subtask1");
project->Save(u"output.xml", Aspose::Tasks::Saving::SaveFileFormat::Xml);
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License