Tasqize is a plugin/library for handling MPP to PDF conversions.
License
—
Deps
0
Install Size
—
Vulns
✓ 0
Published
Dec 17, 2024
$ dotnet add package TasqizeTasqize is a library designed to streamline working with Microsoft Project (MPP) files. Currently, it focuses on converting MPP files into PDF, offering straightforward customization options. Future releases may add additional features and integrations.
dotnet add package Tasqize
2. Basic Usage
using Tasqize;
class Program { static void Main() { var converter = new ProjectToPdfConverter(); converter.ConvertToPdf("input.mpp", "output.pdf"); // The input MPP is now converted to a PDF with default settings. } }
Customizing PDF Output
Use PdfSaveOptions for more control over the export:
var options = new PdfSaveOptions { FitContent = true, // Prevent truncation of long names Timescale = Timescale.Months, PresentationFormat = PresentationFormat.TaskUsage };
var converter = new ProjectToPdfConverter(); converter.ConvertToPdf("input.mpp", "custom_output.pdf", options);
This example sets a monthly timescale and uses a TaskUsage view in the exported PDF.
Future Expansion
While currently focused on MPP-to-PDF conversion, Tasqize aims to support additional functionalities related to Microsoft Project data handling in upcoming releases.