How to Convert MPP to XML Using C++
In order to convert MPP to XML, we’ll use
API which is a feature-rich, powerful and easy to use document manipulation and conversion API for C++ platform. You can download its latest version directly, just open
package manager, search for Aspose.Tasks.Cpp and install. You may also use the following command from the Package Manager Console.
Command
PM> Install-Package Aspose.Tasks.Cpp
Steps to Convert MPP to XML via C++
Developers can easily convert MPP file to XML in just a few lines of code.
- Load MPP file using Aspose::Tasks::Project Object.
- Call the Save() method.
- Pass the output file path with (XML) file extension.
- XML file will be saved at the specified path.
- Open XML file in compatible program.
System Requirements
Before running the conversion example code, make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with C++ Runtime Environment for Windows 32 bit, Windows 64 bit and Linux 64 bit.
- Aspose.Tasks for C++ DLL referenced in your project.
MPP to XML C++ Conversion Source Code
// Load the MPP. | |
System::SharedPtr<Aspose::Tasks::Project> pjc = System::MakeObject<Aspose::Tasks::Project>(u"sourceFile.mpp"); | |
// Save project in XML format. | |
pjc->Save(u"convertedFile.xml", Aspose::Tasks::Saving::SaveFileFormat::XML); |
MPP to XML Conversion Live Demos
Other Supported Conversions
You can also convert MPP into many other file formats including few listed below.