NuGet.Packaging 6.9.1

Nuget.Packaging

NuGet.Packaging is a NuGet client SDK library that provides a set of APIs to interact with .nupkg and .nuspec files from a stream. It provides a way for developers to create and read packages and work with the package metadata.

Usage

It is strongly recommended that NuGet packages are created using the official NuGet tooling and instead of this low-level API. There are a variety of characteristics important for a well-formed package and the latest version of tooling helps incorporate these best practices.

For more information about creating NuGet packages, see the overview of the package creation workflow and the documentation for official pack tooling (for example, using the dotnet CLI).

Examples

Create a package

Create a package, set metadata, and add dependencies.

PackageBuilder builder = new PackageBuilder();
builder.Id = "MyPackage";
builder.Version = new NuGetVersion("1.0.0-beta");
builder.Description = "My package created from the API.";
builder.Authors.Add("Sample author");
builder.DependencyGroups.Add(new PackageDependencyGroup(
    targetFramework: NuGetFramework.Parse("netstandard1.4"),
    packages: new[]
    {
        new PackageDependency("Newtonsoft.Json", VersionRange.Parse("10.0.1"))
    }));

using FileStream outputStream = new FileStream("MyPackage.nupkg", FileMode.Create);
builder.Save(outputStream);
Console.WriteLine($"Saved a package to {outputStream.Name}");

Read a package

Read a package from a file.

using FileStream inputStream = new FileStream("MyPackage.nupkg", FileMode.Open);
using PackageArchiveReader reader = new PackageArchiveReader(inputStream);
NuspecReader nuspec = reader.NuspecReader;
Console.WriteLine($"ID: {nuspec.GetId()}");
Console.WriteLine($"Version: {nuspec.GetVersion()}");
Console.WriteLine($"Description: {nuspec.GetDescription()}");
Console.WriteLine($"Authors: {nuspec.GetAuthors()}");

Console.WriteLine("Dependencies:");
foreach (PackageDependencyGroup dependencyGroup in nuspec.GetDependencyGroups())
{
    Console.WriteLine($" - {dependencyGroup.TargetFramework.GetShortFolderName()}");
    foreach (var dependency in dependencyGroup.Packages)
    {
        Console.WriteLine($"   > {dependency.Id} {dependency.VersionRange}");
    }
}

Additional documentation

More information about the NuGet.Packaging library can be found on the official Microsoft documentation page and NuGet API docs.

Showing the top 20 packages that depend on NuGet.Packaging.

Packages Downloads
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
1
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
1
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
2

.NET Framework 4.7.2

.NET 5.0

.NET Standard 2.0

Version Downloads Last updated
6.11.0 0 08/13/2024
6.11.0-preview.2 0 06/05/2024
6.10.2 0 08/12/2024
6.10.1 0 06/27/2024
6.10.0 0 05/21/2024
6.9.1 2 06/25/2024
6.8.1 0 02/13/2024
6.8.0 0 11/17/2023
6.7.1 0 02/14/2024
6.7.0 0 08/09/2023
6.6.2 0 02/13/2024
6.6.1 0 06/13/2023
6.6.0 0 05/17/2023
6.6.0-preview.3 0 05/17/2023
6.5.1 0 06/13/2023
6.5.0 0 02/22/2023
6.4.3 0 02/13/2024
6.4.2 0 06/13/2023
6.4.0 0 11/09/2022
6.3.4 0 02/13/2024
6.3.3 0 06/14/2023
6.3.1 0 10/11/2022
6.2.4 0 06/14/2023
6.2.2 0 10/11/2022
6.1.0 0 02/16/2022
6.0.6 0 02/13/2024
6.0.5 0 06/13/2023
6.0.3-rc.1 0 10/11/2022
6.0.2 0 06/14/2022
5.11.6 0 02/13/2024
5.11.5 0 06/15/2023
5.11.3 0 10/11/2022
5.10.0 0 06/15/2021
5.9.3 0 10/11/2022
5.8.1 0 01/16/2021
5.7.3-rtm.5 0 10/11/2022
5.7.2 0 06/14/2022
5.6.0 0 05/20/2020
5.5.1 0 04/03/2020
5.4.0 0 12/03/2019
5.3.1 0 10/25/2019
5.2.1 0 06/14/2022
5.1.0 0 05/21/2019
5.0.2 0 05/14/2019
4.9.6 0 10/11/2022
4.8.2 0 03/12/2019
4.7.3 0 03/15/2019
4.6.4 0 03/15/2019
4.5.3 0 03/15/2019
4.4.3 0 03/15/2019
4.3.1 0 03/12/2019
4.2.0 0 07/14/2017
4.1.0 0 07/14/2017
4.0.0 0 03/07/2017
3.5.0 0 12/14/2016
3.4.4-rtm-final 0 06/03/2016
3.4.3 0 04/22/2016
3.3.0 0 12/01/2015
3.2.0 0 09/16/2015