net.sf.mpxj-for-csharp 13.12.0

Suggested Alternatives

MPXJ.Net

dotnet add package net.sf.mpxj-for-csharp --version 13.12.0
                    
NuGet\Install-Package net.sf.mpxj-for-csharp -Version 13.12.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="net.sf.mpxj-for-csharp" Version="13.12.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="net.sf.mpxj-for-csharp" Version="13.12.0" />
                    
Directory.Packages.props
<PackageReference Include="net.sf.mpxj-for-csharp" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add net.sf.mpxj-for-csharp --version 13.12.0
                    
#r "nuget: net.sf.mpxj-for-csharp, 13.12.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package net.sf.mpxj-for-csharp@13.12.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=net.sf.mpxj-for-csharp&version=13.12.0
                    
Install as a Cake Addin
#tool nuget:?package=net.sf.mpxj-for-csharp&version=13.12.0
                    
Install as a Cake Tool

MPXJ for C#

IMPORTANT: this is the legacy .Net version of MPXJ. When MPXJ 14 is released this package will no longer be published. Please migrate your code to use the MPXJ.Net package instead.

MPXJ is a Java library which allows a variety of project file formats and databases to be read and written. This NuGet package uses IKVM to translate the Java library into a .Net assembly. You can find details of the classes and methods in the Javadocs, and more general documentation on the MPXJ website.

This version is not a direct translation of the original Java library: instead it provides C# properties rather than requiring the use of getter and setter methods, and where possible adjusting method names to being with an uppercase letter to allow more idiomatic C# to be written when using this library.

A version of this assembly is available from NuGet (MPXJ) which is a direct translation of the Java library and another version of the assembly (MPXJ for VB) is also available which is more suited for use with VB.

After installing this package you can either work with some of the simple built-in utilities provided by MPXJ for tasks like file format conversion:

using net.sf.mpxj.sample;

new MpxjConvert().process("example.mpp", "example.mpx");

or you can interact directly with the object model exposed by MPXJ to extract data:

using net.sf.mpxj.reader;
using Task = net.sf.mpxj.Task;

var project = new UniversalProjectReader().read("example.mpp");

System.Console.WriteLine("Tasks");
foreach (Task task in project.Tasks)
{
    System.Console.WriteLine(task.ID.toString() + "\t" + task.Name);
}

or finally you can generate your own schedule:

using java.text;
using net.sf.mpxj;
using net.sf.mpxj.writer;

// In the example below we'll be generating an MSPDI
// file which we can import into Microsoft Project.
var filename = "example.xml";
var fileformat = FileFormat.MSPDI;

// Create a simple date format to allow us to easily set date values.
var df = new SimpleDateFormat("dd/MM/yyyy");

// Create a ProjectFile instance
var file = new ProjectFile();

// Add a default calendar called "Standard"
var calendar = file.addDefaultBaseCalendar();

// Add a holiday to the calendar to demonstrate calendar exceptions
calendar.addCalendarException(df.parse("13/03/2006"), df.parse("13/03/2006"));

// Retrieve the project properties and set the start date. Note Microsoft
// Project appears to reset all task dates relative to this date, so this
// date must match the start date of the earliest task for you to see
// the expected results. If this value is not set, it will default to
// today's date.
var properties = file.ProjectProperties;
properties.StartDate = df.parse("01/01/2003");

// Set a couple more properties just for fun
properties.ProjectTitle = "Created by MPXJ";
properties.Author = "Jon Iles";

// Let's create an alias for TEXT1
var customFields = file.CustomFields;
var field = customFields.getOrCreate(TaskField.TEXT1);
field.setAlias("My Custom Field");

// Add resources
var resource1 = file.addResource();
resource1.Name = "Resource1";

var resource2 = file.addResource();
resource2.Name = "Resource2";
resource2.MaxUnits = java.lang.Double.valueOf(50.0);

// Create a summary task
var task1 = file.addTask();
task1.Name = "Summary Task";

// Create the first sub task
var task2 = task1.addTask();
task2.Name = "First Sub Task";
task2.Duration = Duration.getInstance(10.5, TimeUnit.DAYS);
task2.Start = df.parse("01/01/2003");
task2.setText(1, "My Custom Value 1");

// We'll set this task up as being 50% complete. If we have no resource
// assignments for this task, this is enough information for MS Project.
// If we do have resource assignments, the assignment record needs to
// contain the corresponding work and actual work fields set to the
// correct values in order for MS project to mark the task as complete
// or partially complete.
task2.PercentageComplete = java.lang.Double.valueOf(50.0);
task2.ActualStart = df.parse("01/01/2003");

// Create the second sub task
var task3 = task1.addTask();
task3.Name = "Second Sub Task";
task3.Start = df.parse("11/01/2003");
task3.Duration = Duration.getInstance(10, TimeUnit.DAYS);
task3.setText(1, "My Custom Value 2");

// Link these two tasks
task3.addPredecessor(task2, RelationType.FINISH_START, null);

// Add a milestone
var milestone1 = task1.addTask();
milestone1.Name = "Milestone";
milestone1.Start = df.parse("21/01/2003");
milestone1.Duration = Duration.getInstance(0, TimeUnit.DAYS);
milestone1.addPredecessor(task3, RelationType.FINISH_START, null);

// This final task has a percent complete value, but no
// resource assignments. This is an interesting case it it requires
// special processing to generate the MSPDI file correctly.
var task4 = file.addTask();
task4.Name = "Next Task";
task4.Duration = Duration.getInstance(8, TimeUnit.DAYS);
task4.Start= df.parse("01/01/2003");
task4.PercentageComplete = java.lang.Double.valueOf(70.0);
task4.ActualStart = df.parse("01/01/2003");

// Assign resources to tasks
var assignment1 = task2.addResourceAssignment(resource1);
var assignment2 = task3.addResourceAssignment(resource2);

// As the first task is partially complete, and we are adding
// a resource assignment, we must set the work and actual work
// fields in the assignment to appropriate values, or MS Project
// won't recognise the task as being complete or partially complete
assignment1.Work = Duration.getInstance(80, TimeUnit.HOURS);
assignment1.ActualWork = Duration.getInstance(40, TimeUnit.HOURS);

// If we were just generating an MPX file, we would already have enough
// attributes set to create the file correctly. If we want to generate
// an MSPDI file, we must also set the assignment start dates and
// the remaining work attribute. The assignment start dates will normally
// be the same as the task start dates.
assignment1.RemainingWork = Duration.getInstance(40, TimeUnit.HOURS);
assignment2.RemainingWork = Duration.getInstance(80, TimeUnit.HOURS);
assignment1.Start = df.parse("01/01/2003");
assignment2.Start = df.parse("11/01/2003");

// Write a 100% complete task
var task5 = file.addTask();
task5.Name = "Last Task";
task5.Duration = Duration.getInstance(3, TimeUnit.DAYS);
task5.Start = df.parse("01/01/2003");
task5.PercentageComplete = java.lang.Double.valueOf(100.0);
task5.ActualStart = df.parse("01/01/2003");

// Write a 100% complete milestone
var task6 = file.addTask();
task6.Name = "Last Milestone";
task6.Duration = Duration.getInstance(0, TimeUnit.DAYS);
task6.Start = df.parse("01/01/2003");
task6.PercentageComplete = java.lang.Double.valueOf(100.0);
task6.ActualStart = df.parse("01/01/2003");

// Write the file
new UniversalProjectWriter(fileformat).write(file, filename);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on net.sf.mpxj-for-csharp:

Repository Stars
countincognito/Zametek.ProjectPlan
A simple, Open Source, and cross-platform desktop alternative to Microsoft Project for designing and creating project plans.
Version Downloads Last Updated
13.12.0 1,843 4/9/2025 13.12.0 is deprecated because it is no longer maintained.
13.11.0 2,463 3/10/2025 13.11.0 is deprecated because it is no longer maintained.
13.10.0 3,776 2/7/2025 13.10.0 is deprecated because it is no longer maintained.
13.9.0 2,857 1/9/2025 13.9.0 is deprecated because it is no longer maintained.
13.8.0 2,003 12/17/2024 13.8.0 is deprecated because it is no longer maintained.
13.7.0 4,670 11/25/2024 13.7.0 is deprecated because it is no longer maintained.
13.6.0 6,013 11/6/2024 13.6.0 is deprecated because it is no longer maintained.
13.5.1 12,095 10/28/2024 13.5.1 is deprecated because it is no longer maintained.
13.5.0 7,533 10/17/2024 13.5.0 is deprecated because it is no longer maintained; 13.5.0 has at least one vulnerability with moderate severity.
13.4.2 3,588 10/8/2024 13.4.2 is deprecated because it is no longer maintained; 13.4.2 has at least one vulnerability with moderate severity.
13.4.1 864 10/7/2024 13.4.1 is deprecated because it is no longer maintained; 13.4.1 has at least one vulnerability with moderate severity.
13.4.0 5,655 9/18/2024 13.4.0 is deprecated because it is no longer maintained; 13.4.0 has at least one vulnerability with moderate severity.
13.3.1 4,580 8/30/2024 13.3.1 is deprecated because it is no longer maintained; 13.3.1 has at least one vulnerability with moderate severity.
13.3.0 1,663 8/22/2024 13.3.0 is deprecated because it is no longer maintained; 13.3.0 has at least one vulnerability with moderate severity.
13.2.1 4,637 8/13/2024 13.2.1 is deprecated because it is no longer maintained; 13.2.1 has at least one vulnerability with moderate severity.
13.2.0 2,804 8/12/2024 13.2.0 is deprecated because it is no longer maintained; 13.2.0 has at least one vulnerability with moderate severity.
13.1.0 21,756 7/26/2024 13.1.0 is deprecated because it is no longer maintained; 13.1.0 has at least one vulnerability with moderate severity.
13.0.2 3,916 7/8/2024 13.0.2 is deprecated because it is no longer maintained; 13.0.2 has at least one vulnerability with moderate severity.
13.0.1 1,061 7/4/2024 13.0.1 is deprecated because it is no longer maintained; 13.0.1 has at least one vulnerability with moderate severity.
13.0.0 3,359 6/20/2024 13.0.0 is deprecated because it is no longer maintained; 13.0.0 has at least one vulnerability with moderate severity.
12.10.3 1,415 6/14/2024 12.10.3 is deprecated because it is no longer maintained; 12.10.3 has at least one vulnerability with moderate severity.
12.10.2 1,784 6/3/2024 12.10.2 is deprecated because it is no longer maintained; 12.10.2 has at least one vulnerability with moderate severity.
12.10.1 1,952 5/22/2024 12.10.1 is deprecated because it is no longer maintained; 12.10.1 has at least one vulnerability with moderate severity.
12.10.0 3,908 5/13/2024 12.10.0 is deprecated because it is no longer maintained; 12.10.0 has at least one vulnerability with moderate severity.
12.9.3 3,646 4/24/2024 12.9.3 is deprecated because it is no longer maintained; 12.9.3 has at least one vulnerability with moderate severity.
12.9.2 3,310 4/19/2024 12.9.2 is deprecated because it is no longer maintained; 12.9.2 has at least one vulnerability with moderate severity.
12.9.1 5,052 4/17/2024 12.9.1 is deprecated because it is no longer maintained; 12.9.1 has at least one vulnerability with moderate severity.
12.9.0 2,844 4/11/2024 12.9.0 is deprecated because it is no longer maintained; 12.9.0 has at least one vulnerability with moderate severity.
12.8.1 5,148 3/11/2024 12.8.1 is deprecated because it is no longer maintained; 12.8.1 has at least one vulnerability with moderate severity.
12.8.0 4,617 3/4/2024 12.8.0 is deprecated because it is no longer maintained; 12.8.0 has at least one vulnerability with moderate severity.
12.7.0 10,259 2/7/2024 12.7.0 is deprecated because it is no longer maintained; 12.7.0 has at least one vulnerability with moderate severity.
12.6.0 6,006 1/22/2024 12.6.0 is deprecated because it is no longer maintained; 12.6.0 has at least one vulnerability with moderate severity.
12.5.0 7,365 12/18/2023 12.5.0 is deprecated because it is no longer maintained; 12.5.0 has at least one vulnerability with moderate severity.
12.4.0 6,536 11/23/2023 12.4.0 is deprecated because it is no longer maintained; 12.4.0 has at least one vulnerability with moderate severity.
12.3.0 6,544 11/7/2023 12.3.0 is deprecated because it is no longer maintained; 12.3.0 has at least one vulnerability with moderate severity.
12.2.0 7,285 10/12/2023 12.2.0 is deprecated because it is no longer maintained; 12.2.0 has at least one vulnerability with moderate severity.
12.1.3 6,296 9/25/2023 12.1.3 is deprecated because it is no longer maintained; 12.1.3 has at least one vulnerability with moderate severity.
12.1.2 6,666 9/21/2023 12.1.2 is deprecated because it is no longer maintained; 12.1.2 has at least one vulnerability with moderate severity.
12.1.1 6,804 8/23/2023 12.1.1 is deprecated because it is no longer maintained; 12.1.1 has at least one vulnerability with moderate severity.
12.1.0 7,215 8/22/2023 12.1.0 is deprecated because it is no longer maintained; 12.1.0 has at least one vulnerability with moderate severity.
12.0.2 10,152 7/25/2023 12.0.2 is deprecated because it is no longer maintained; 12.0.2 has at least one vulnerability with moderate severity.
12.0.1 8,928 7/21/2023 12.0.1 is deprecated because it is no longer maintained; 12.0.1 has at least one vulnerability with moderate severity.
12.0.0 11,962 6/29/2023 12.0.0 is deprecated because it is no longer maintained; 12.0.0 has at least one vulnerability with moderate severity.
11.5.4 15,788 6/27/2023 11.5.4 is deprecated because it is no longer maintained; 11.5.4 has at least one vulnerability with moderate severity.
11.5.3 8,994 6/19/2023 11.5.3 is deprecated because it is no longer maintained; 11.5.3 has at least one vulnerability with moderate severity.
11.5.2 10,113 6/8/2023 11.5.2 is deprecated because it is no longer maintained; 11.5.2 has at least one vulnerability with moderate severity.
11.5.1 9,745 5/24/2023 11.5.1 is deprecated because it is no longer maintained; 11.5.1 has at least one vulnerability with moderate severity.
11.5.0 6,920 5/19/2023 11.5.0 is deprecated because it is no longer maintained; 11.5.0 has at least one vulnerability with moderate severity.
11.4.0 7,225 5/8/2023 11.4.0 is deprecated because it is no longer maintained; 11.4.0 has at least one vulnerability with moderate severity.
11.3.2 7,552 4/29/2023 11.3.2 is deprecated because it is no longer maintained; 11.3.2 has at least one vulnerability with moderate severity.
11.3.1 6,230 4/21/2023 11.3.1 is deprecated because it is no longer maintained; 11.3.1 has at least one vulnerability with moderate severity.
11.3.0 12,576 4/12/2023 11.3.0 is deprecated because it is no longer maintained; 11.3.0 has at least one vulnerability with moderate severity.
11.2.0 19,202 3/13/2023 11.2.0 is deprecated because it is no longer maintained; 11.2.0 has at least one vulnerability with moderate severity.
11.1.0 9,387 2/15/2023 11.1.0 is deprecated because it is no longer maintained; 11.1.0 has at least one vulnerability with moderate severity.
11.0.0 1,458 2/8/2023 11.0.0 is deprecated because it is no longer maintained; 11.0.0 has at least one vulnerability with moderate severity.
10.16.2 1,802 1/29/2023 10.16.2 is deprecated because it is no longer maintained; 10.16.2 has at least one vulnerability with moderate severity.
10.16.1 1,378 1/26/2023 10.16.1 is deprecated because it is no longer maintained; 10.16.1 has at least one vulnerability with moderate severity.
10.16.0 1,384 1/24/2023 10.16.0 is deprecated because it is no longer maintained; 10.16.0 has at least one vulnerability with moderate severity.
10.15.0 1,529 1/11/2023 10.15.0 is deprecated because it is no longer maintained; 10.15.0 has at least one vulnerability with moderate severity.
10.14.1 7,655 11/25/2022 10.14.1 is deprecated because it is no longer maintained; 10.14.1 has at least one vulnerability with moderate severity.
10.14.0 3,462 11/21/2022 10.14.0 is deprecated because it is no longer maintained; 10.14.0 has at least one vulnerability with moderate severity.
10.13.0 1,914 11/16/2022 10.13.0 is deprecated because it is no longer maintained; 10.13.0 has at least one vulnerability with moderate severity.
10.12.0 1,721 11/1/2022 10.12.0 is deprecated because it is no longer maintained; 10.12.0 has at least one vulnerability with moderate severity.
10.11.0 6,219 9/27/2022 10.11.0 is deprecated because it is no longer maintained; 10.11.0 has at least one vulnerability with moderate severity.
10.10.0 1,712 9/13/2022 10.10.0 is deprecated because it is no longer maintained; 10.10.0 has at least one vulnerability with moderate severity.
10.9.1 2,299 8/31/2022 10.9.1 is deprecated because it is no longer maintained; 10.9.1 has at least one vulnerability with moderate severity.
10.9.0 1,729 8/23/2022 10.9.0 is deprecated because it is no longer maintained; 10.9.0 has at least one vulnerability with moderate severity.
10.8.0 1,738 8/17/2022 10.8.0 is deprecated because it is no longer maintained; 10.8.0 has at least one vulnerability with moderate severity.
10.7.0 11,148 8/9/2022 10.7.0 is deprecated because it is no longer maintained; 10.7.0 has at least one vulnerability with moderate severity.
10.6.2 4,601 6/29/2022 10.6.2 is deprecated because it is no longer maintained; 10.6.2 has at least one vulnerability with moderate severity.
10.6.1 2,667 6/14/2022 10.6.1 is deprecated because it is no longer maintained; 10.6.1 has at least one vulnerability with moderate severity.
10.6.0 2,036 6/8/2022 10.6.0 is deprecated because it is no longer maintained; 10.6.0 has at least one vulnerability with moderate severity.
10.5.0 1,825 5/24/2022 10.5.0 is deprecated because it is no longer maintained; 10.5.0 has at least one vulnerability with moderate severity.
10.4.0 2,908 5/9/2022 10.4.0 is deprecated because it is no longer maintained; 10.4.0 has at least one vulnerability with moderate severity.
10.3.0 1,791 4/29/2022 10.3.0 is deprecated because it is no longer maintained; 10.3.0 has at least one vulnerability with moderate severity.
10.2.0 3,357 3/6/2022 10.2.0 is deprecated because it is no longer maintained; 10.2.0 has at least one vulnerability with moderate severity.
10.1.0 2,210 1/29/2022 10.1.0 is deprecated because it is no longer maintained; 10.1.0 has at least one vulnerability with moderate severity.
10.0.5 4,020 1/11/2022 10.0.5 is deprecated because it is no longer maintained; 10.0.5 has at least one vulnerability with moderate severity.
10.0.4 1,647 1/7/2022 10.0.4 is deprecated because it is no longer maintained; 10.0.4 has at least one vulnerability with moderate severity.
10.0.3 1,766 12/22/2021 10.0.3 is deprecated because it is no longer maintained; 10.0.3 has at least one vulnerability with moderate severity.
10.0.2 1,707 12/16/2021 10.0.2 is deprecated because it is no longer maintained; 10.0.2 has at least one vulnerability with moderate severity.
10.0.1 1,685 12/10/2021 10.0.1 is deprecated because it is no longer maintained; 10.0.1 has at least one vulnerability with moderate severity.
10.0.0 3,474 12/1/2021 10.0.0 is deprecated because it is no longer maintained; 10.0.0 has at least one vulnerability with moderate severity.
9.8.3 1,986 11/30/2021 9.8.3 is deprecated because it is no longer maintained; 9.8.3 has at least one vulnerability with moderate severity.
9.8.2 2,419 11/1/2021 9.8.2 is deprecated because it is no longer maintained; 9.8.2 has at least one vulnerability with moderate severity.
9.8.1 2,036 10/13/2021 9.8.1 is deprecated because it is no longer maintained; 9.8.1 has at least one vulnerability with moderate severity.
9.8.0 2,136 9/30/2021 9.8.0 is deprecated because it is no longer maintained; 9.8.0 has at least one vulnerability with moderate severity.
9.7.0 1,707 9/28/2021 9.7.0 is deprecated because it is no longer maintained; 9.7.0 has at least one vulnerability with moderate severity.
9.6.0 1,787 9/13/2021 9.6.0 is deprecated because it is no longer maintained; 9.6.0 has at least one vulnerability with moderate severity.
9.5.2 1,780 8/22/2021 9.5.2 is deprecated because it is no longer maintained; 9.5.2 has at least one vulnerability with moderate severity.
9.5.1 1,931 7/2/2021 9.5.1 is deprecated because it is no longer maintained; 9.5.1 has at least one vulnerability with moderate severity.
9.5.0 1,828 6/30/2021 9.5.0 is deprecated because it is no longer maintained; 9.5.0 has at least one vulnerability with moderate severity.
9.4.0 1,953 6/11/2021 9.4.0 is deprecated because it is no longer maintained; 9.4.0 has at least one vulnerability with moderate severity.
9.3.1 16,702 5/18/2021 9.3.1 is deprecated because it is no longer maintained; 9.3.1 has at least one vulnerability with moderate severity.
9.3.0 1,826 5/6/2021 9.3.0 is deprecated because it is no longer maintained; 9.3.0 has at least one vulnerability with moderate severity.
9.2.6 2,997 4/26/2021 9.2.6 is deprecated because it is no longer maintained; 9.2.6 has at least one vulnerability with moderate severity.
9.2.5 1,830 4/20/2021 9.2.5 is deprecated because it is no longer maintained; 9.2.5 has at least one vulnerability with moderate severity.
9.2.4 1,859 4/9/2021 9.2.4 is deprecated because it is no longer maintained; 9.2.4 has at least one vulnerability with moderate severity.
9.2.3 1,771 4/8/2021 9.2.3 is deprecated because it is no longer maintained; 9.2.3 has at least one vulnerability with moderate severity.
9.2.2 1,750 4/7/2021 9.2.2 is deprecated because it is no longer maintained; 9.2.2 has at least one vulnerability with moderate severity.
9.2.1 1,801 4/4/2021 9.2.1 is deprecated because it is no longer maintained; 9.2.1 has at least one vulnerability with moderate severity.
9.2.0 1,795 3/30/2021 9.2.0 is deprecated because it is no longer maintained; 9.2.0 has at least one vulnerability with moderate severity.
9.1.0 2,119 3/11/2021 9.1.0 is deprecated because it is no longer maintained; 9.1.0 has at least one vulnerability with moderate severity.
9.0.0 2,474 2/18/2021 9.0.0 is deprecated because it is no longer maintained; 9.0.0 has at least one vulnerability with moderate severity.
8.5.1 5,132 1/8/2021 8.5.1 is deprecated because it is no longer maintained; 8.5.1 has at least one vulnerability with moderate severity.
8.5.0 1,934 1/6/2021 8.5.0 is deprecated because it is no longer maintained; 8.5.0 has at least one vulnerability with moderate severity.
8.4.0 1,921 12/29/2020 8.4.0 is deprecated because it is no longer maintained; 8.4.0 has at least one vulnerability with moderate severity.
8.3.5 2,047 12/15/2020 8.3.5 is deprecated because it is no longer maintained; 8.3.5 has at least one vulnerability with moderate severity.
8.3.4 2,013 12/10/2020 8.3.4 is deprecated because it is no longer maintained; 8.3.4 has at least one vulnerability with low severity.
8.3.3 2,016 11/24/2020 8.3.3 is deprecated because it is no longer maintained; 8.3.3 has at least one vulnerability with low severity.
8.3.2 2,275 10/22/2020 8.3.2 is deprecated because it is no longer maintained; 8.3.2 has at least one vulnerability with low severity.
8.3.1 2,083 10/14/2020 8.3.1 is deprecated because it is no longer maintained; 8.3.1 has at least one vulnerability with low severity.
8.3.0 2,076 10/13/2020 8.3.0 is deprecated because it is no longer maintained; 8.3.0 has at least one vulnerability with low severity.
8.2.0 2,384 9/9/2020 8.2.0 is deprecated because it is no longer maintained; 8.2.0 has at least one vulnerability with low severity.
8.1.4 1,950 8/31/2020 8.1.4 is deprecated because it is no longer maintained; 8.1.4 has at least one vulnerability with low severity.
8.1.3 9,933 6/25/2020 8.1.3 is deprecated because it is no longer maintained; 8.1.3 has at least one vulnerability with low severity.
8.1.2 1,995 6/18/2020 8.1.2 is deprecated because it is no longer maintained; 8.1.2 has at least one vulnerability with low severity.
8.1.1 2,037 6/17/2020 8.1.1 is deprecated because it is no longer maintained; 8.1.1 has at least one vulnerability with low severity.
8.1.0 2,352 6/11/2020 8.1.0 is deprecated because it is no longer maintained; 8.1.0 has at least one vulnerability with low severity.
8.0.8 2,499 4/20/2020 8.0.8 is deprecated because it is no longer maintained; 8.0.8 has at least one vulnerability with low severity.
8.0.6 2,487 3/5/2020 8.0.6 is deprecated because it is no longer maintained; 8.0.6 has at least one vulnerability with low severity.
8.0.5 2,533 2/7/2020 8.0.5 is deprecated because it is no longer maintained; 8.0.5 has at least one vulnerability with low severity.
8.0.4 2,031 2/6/2020 8.0.4 is deprecated because it is no longer maintained; 8.0.4 has at least one vulnerability with low severity.
8.0.3 2,561 1/27/2020 8.0.3 is deprecated because it is no longer maintained; 8.0.3 has at least one vulnerability with low severity.
8.0.2 1,998 1/16/2020 8.0.2 is deprecated because it is no longer maintained; 8.0.2 has at least one vulnerability with low severity.
8.0.1 6,061 1/5/2020 8.0.1 is deprecated because it is no longer maintained; 8.0.1 has at least one vulnerability with low severity.
8.0.0 2,073 1/2/2020 8.0.0 is deprecated because it is no longer maintained; 8.0.0 has at least one vulnerability with low severity.
7.9.8 2,140 12/27/2019 7.9.8 is deprecated because it is no longer maintained; 7.9.8 has at least one vulnerability with low severity.
7.9.7 2,186 11/25/2019 7.9.7 is deprecated because it is no longer maintained; 7.9.7 has at least one vulnerability with low severity.
7.9.5 2,018 11/19/2019 7.9.5 is deprecated because it is no longer maintained; 7.9.5 has at least one vulnerability with low severity.
7.9.4 2,024 11/8/2019 7.9.4 is deprecated because it is no longer maintained; 7.9.4 has at least one vulnerability with low severity.
7.9.3 3,013 9/10/2019 7.9.3 is deprecated because it is no longer maintained; 7.9.3 has at least one vulnerability with low severity.
7.9.2 2,321 8/19/2019 7.9.2 is deprecated because it is no longer maintained; 7.9.2 has at least one vulnerability with low severity.
7.9.1 3,243 7/1/2019 7.9.1 is deprecated because it is no longer maintained; 7.9.1 has at least one vulnerability with low severity.
7.9.0 2,089 7/1/2019 7.9.0 is deprecated because it is no longer maintained; 7.9.0 has at least one vulnerability with low severity.
7.8.4 2,039 6/27/2019 7.8.4 is deprecated because it is no longer maintained; 7.8.4 has at least one vulnerability with low severity.
7.8.3 2,399 5/24/2019 7.8.3 is deprecated because it is no longer maintained; 7.8.3 has at least one vulnerability with low severity.
7.8.2 2,150 5/19/2019 7.8.2 is deprecated because it is no longer maintained; 7.8.2 has at least one vulnerability with low severity.
7.8.1 6,698 2/13/2019 7.8.1 is deprecated because it is no longer maintained; 7.8.1 has at least one vulnerability with low severity.
7.8.0 2,873 1/18/2019 7.8.0 is deprecated because it is no longer maintained; 7.8.0 has at least one vulnerability with low severity.
7.7.1 4,683 10/23/2018 7.7.1 is deprecated because it is no longer maintained; 7.7.1 has at least one vulnerability with low severity.
7.7.0 2,327 10/12/2018 7.7.0 is deprecated because it is no longer maintained; 7.7.0 has at least one vulnerability with low severity.
7.6.3 2,340 10/4/2018 7.6.3 is deprecated because it is no longer maintained; 7.6.3 has at least one vulnerability with low severity.
7.6.2 2,827 8/30/2018 7.6.2 is deprecated because it is no longer maintained; 7.6.2 has at least one vulnerability with low severity.
7.6.1 2,363 8/29/2018 7.6.1 is deprecated because it is no longer maintained; 7.6.1 has at least one vulnerability with low severity.
7.6.0 2,932 7/13/2018 7.6.0 is deprecated because it is no longer maintained; 7.6.0 has at least one vulnerability with low severity.
7.5.0 3,101 6/19/2018 7.5.0 is deprecated because it is no longer maintained; 7.5.0 has at least one vulnerability with low severity.
7.4.4 2,762 6/6/2018 7.4.4 is deprecated because it is no longer maintained; 7.4.4 has at least one vulnerability with low severity.
7.4.3 2,823 5/25/2018 7.4.3 is deprecated because it is no longer maintained; 7.4.3 has at least one vulnerability with low severity.
7.4.2 2,974 4/30/2018 7.4.2 is deprecated because it is no longer maintained; 7.4.2 has at least one vulnerability with low severity.
7.4.1 2,837 4/16/2018 7.4.1 is deprecated because it is no longer maintained; 7.4.1 has at least one vulnerability with low severity.
7.4.0 2,937 3/23/2018 7.4.0 is deprecated because it is no longer maintained; 7.4.0 has at least one vulnerability with low severity.
7.3.0 2,792 3/12/2018 7.3.0 is deprecated because it is no longer maintained; 7.3.0 has at least one vulnerability with low severity.
7.2.1 3,461 1/26/2018 7.2.1 is deprecated because it is no longer maintained; 7.2.1 has at least one vulnerability with low severity.
7.2.0 2,721 1/18/2018 7.2.0 is deprecated because it is no longer maintained; 7.2.0 has at least one vulnerability with low severity.
7.1.0 2,736 1/3/2018 7.1.0 is deprecated because it is no longer maintained; 7.1.0 has at least one vulnerability with low severity.
7.0.3 2,754 12/21/2017 7.0.3 is deprecated because it is no longer maintained; 7.0.3 has at least one vulnerability with low severity.
7.0.2 2,639 11/20/2017 7.0.2 is deprecated because it is no longer maintained; 7.0.2 has at least one vulnerability with low severity.
7.0.1 2,572 11/20/2017 7.0.1 is deprecated because it is no longer maintained; 7.0.1 has at least one vulnerability with low severity.
7.0.0 2,576 11/8/2017 7.0.0 is deprecated because it is no longer maintained; 7.0.0 has at least one vulnerability with low severity.
6.2.1 4,278 10/11/2017 6.2.1 is deprecated because it is no longer maintained; 6.2.1 has at least one vulnerability with low severity.
6.2.0 2,560 10/6/2017 6.2.0 is deprecated because it is no longer maintained; 6.2.0 has at least one vulnerability with low severity.
6.1.2 2,662 9/12/2017 6.1.2 is deprecated because it is no longer maintained; 6.1.2 has at least one vulnerability with low severity.
6.1.0 3,016 7/28/2017 6.1.0 is deprecated because it is no longer maintained; 6.1.0 has at least one vulnerability with low severity.
6.0.0 2,629 7/22/2017 6.0.0 is deprecated because it is no longer maintained; 6.0.0 has at least one vulnerability with low severity.
5.14.0 2,799 7/13/2017 5.14.0 is deprecated because it is no longer maintained; 5.14.0 has at least one vulnerability with low severity.
5.13.0 2,662 6/27/2017 5.13.0 is deprecated because it is no longer maintained; 5.13.0 has at least one vulnerability with low severity.
5.12.0 2,613 6/26/2017 5.12.0 is deprecated because it is no longer maintained; 5.12.0 has at least one vulnerability with low severity.
5.11.0 2,681 6/20/2017 5.11.0 is deprecated because it is no longer maintained; 5.11.0 has at least one vulnerability with low severity.
5.10.0 2,678 5/23/2017 5.10.0 is deprecated because it is no longer maintained; 5.10.0 has at least one vulnerability with low severity.
5.9.0 2,744 4/27/2017 5.9.0 is deprecated because it is no longer maintained; 5.9.0 has at least one vulnerability with low severity.
5.8.0 2,689 4/21/2017 5.8.0 is deprecated because it is no longer maintained; 5.8.0 has at least one vulnerability with low severity.
5.7.1 2,721 3/22/2017 5.7.1 is deprecated because it is no longer maintained; 5.7.1 has at least one vulnerability with low severity.
5.7.0 2,612 3/20/2017 5.7.0 is deprecated because it is no longer maintained; 5.7.0 has at least one vulnerability with low severity.
5.6.5 2,661 3/7/2017 5.6.5 is deprecated because it is no longer maintained; 5.6.5 has at least one vulnerability with low severity.
5.6.4 8,614 2/16/2017 5.6.4 is deprecated because it is no longer maintained; 5.6.4 has at least one vulnerability with low severity.
5.6.3 2,611 2/8/2017 5.6.3 is deprecated because it is no longer maintained; 5.6.3 has at least one vulnerability with low severity.
5.6.2 2,646 2/6/2017 5.6.2 is deprecated because it is no longer maintained; 5.6.2 has at least one vulnerability with low severity.
5.6.1 2,594 2/3/2017 5.6.1 is deprecated because it is no longer maintained; 5.6.1 has at least one vulnerability with low severity.
5.6.0 2,615 1/29/2017 5.6.0 is deprecated because it is no longer maintained; 5.6.0 has at least one vulnerability with low severity.
5.5.9 2,661 1/27/2017 5.5.9 is deprecated because it is no longer maintained; 5.5.9 has at least one vulnerability with low severity.
5.5.8 2,616 1/23/2017 5.5.8 is deprecated because it is no longer maintained; 5.5.8 has at least one vulnerability with low severity.
5.5.7 2,615 1/13/2017 5.5.7 is deprecated because it is no longer maintained; 5.5.7 has at least one vulnerability with low severity.
5.5.6 2,668 1/6/2017 5.5.6 is deprecated because it is no longer maintained; 5.5.6 has at least one vulnerability with low severity.
5.5.5 2,656 1/6/2017 5.5.5 is deprecated because it is no longer maintained; 5.5.5 has at least one vulnerability with low severity.
5.5.4 2,786 12/1/2016 5.5.4 is deprecated because it is no longer maintained; 5.5.4 has at least one vulnerability with low severity.
5.5.3 2,623 11/29/2016 5.5.3 is deprecated because it is no longer maintained; 5.5.3 has at least one vulnerability with low severity.
5.5.2 3,160 11/2/2016 5.5.2 is deprecated because it is no longer maintained; 5.5.2 has at least one vulnerability with low severity.
5.5.1 2,762 10/14/2016 5.5.1 is deprecated because it is no longer maintained; 5.5.1 has at least one vulnerability with low severity.
5.5.0 2,614 10/13/2016 5.5.0 is deprecated because it is no longer maintained; 5.5.0 has at least one vulnerability with low severity.
5.4.0 2,600 10/6/2016 5.4.0 is deprecated because it is no longer maintained; 5.4.0 has at least one vulnerability with low severity.
5.3.3 2,831 8/31/2016 5.3.3 is deprecated because it is no longer maintained; 5.3.3 has at least one vulnerability with low severity.
5.3.2 2,636 8/31/2016 5.3.2 is deprecated because it is no longer maintained; 5.3.2 has at least one vulnerability with low severity.
5.3.1 2,780 7/1/2016 5.3.1 is deprecated because it is no longer maintained; 5.3.1 has at least one vulnerability with low severity.
5.3.0 2,784 6/10/2016 5.3.0 is deprecated because it is no longer maintained; 5.3.0 has at least one vulnerability with low severity.
5.2.2 4,918 3/11/2016 5.2.2 is deprecated because it is no longer maintained; 5.2.2 has at least one vulnerability with low severity.
5.2.1 4,515 2/11/2016 5.2.1 is deprecated because it is no longer maintained; 5.2.1 has at least one vulnerability with low severity.
5.2.0 3,927 2/8/2016 5.2.0 is deprecated because it is no longer maintained; 5.2.0 has at least one vulnerability with low severity.
5.1.18 4,454 1/26/2016 5.1.18 is deprecated because it is no longer maintained; 5.1.18 has at least one vulnerability with low severity.
5.1.17 4,825 12/30/2015 5.1.17 is deprecated because it is no longer maintained; 5.1.17 has at least one vulnerability with low severity.
5.1.16 4,936 12/18/2015 5.1.16 is deprecated because it is no longer maintained; 5.1.16 has at least one vulnerability with low severity.
5.1.15 4,034 12/16/2015 5.1.15 is deprecated because it is no longer maintained; 5.1.15 has at least one vulnerability with low severity.
5.1.13 4,255 11/26/2015 5.1.13 is deprecated because it is no longer maintained; 5.1.13 has at least one vulnerability with low severity.
5.1.12 4,065 11/16/2015 5.1.12 is deprecated because it is no longer maintained; 5.1.12 has at least one vulnerability with low severity.
5.1.11 3,861 11/12/2015 5.1.11 is deprecated because it is no longer maintained; 5.1.11 has at least one vulnerability with low severity.
5.1.10 5,004 9/9/2015 5.1.10 is deprecated because it is no longer maintained; 5.1.10 has at least one vulnerability with low severity.
5.1.9 4,058 8/30/2015 5.1.9 is deprecated because it is no longer maintained; 5.1.9 has at least one vulnerability with low severity.
5.1.5 4,540 6/5/2015 5.1.5 is deprecated because it is no longer maintained; 5.1.5 has at least one vulnerability with low severity.
5.1.4 3,352 6/3/2015 5.1.4 is deprecated because it is no longer maintained; 5.1.4 has at least one vulnerability with low severity.
5.1.0 3,809 5/18/2015 5.1.0 is deprecated because it is no longer maintained; 5.1.0 has at least one vulnerability with low severity.
5.0.0 3,444 5/6/2015 5.0.0 is deprecated because it is no longer maintained; 5.0.0 has at least one vulnerability with low severity.
4.7.6 4,345 3/18/2015 4.7.6 is deprecated because it is no longer maintained; 4.7.6 has at least one vulnerability with low severity.
4.7.5 3,477 2/27/2015 4.7.5 is deprecated because it is no longer maintained; 4.7.5 has at least one vulnerability with low severity.
4.7.4 3,806 2/25/2015 4.7.4 is deprecated because it is no longer maintained; 4.7.4 has at least one vulnerability with low severity.
4.7.3 3,876 12/23/2014 4.7.3 is deprecated because it is no longer maintained; 4.7.3 has at least one vulnerability with low severity.
4.7.1 3,552 12/8/2014 4.7.1 is deprecated because it is no longer maintained; 4.7.1 has at least one vulnerability with low severity.
4.7.0 3,693 12/4/2014 4.7.0 is deprecated because it is no longer maintained; 4.7.0 has at least one vulnerability with low severity.
4.6.2 4,074 11/11/2014 4.6.2 is deprecated because it is no longer maintained; 4.6.2 has at least one vulnerability with low severity.
4.6.1 3,751 10/17/2014 4.6.1 is deprecated because it is no longer maintained; 4.6.1 has at least one vulnerability with low severity.