NuGet.Packaging 6.13.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.Cli.Utils
Package Description
16
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
16
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
19
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
15
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
17
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
16
NuGet.Client
NuGet.Client
15
NuGet.Client
NuGet v3 core library.
16
NuGet.Protocol
NuGet client library.
22
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
15
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
16
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
17
NuGet.Protocol.Core.Types
NuGet's protocol-level base types used for connecting to API v2 and API v3 repositories.
16
Nuke.Common
Cross-platform build automation system
15
Nuke.Common
Cross-platform build automation system Signed by signpath.io from repository 'https://github.com/nuke-build/nuke' commit '706f53a42a3ab7ee112350cfdd0e4d1683eb5d1d' (see contained AppVeyorSettings.json file for build settings).
15

Version Downloads Last updated
6.13.1 1 02/23/2025
6.12.1 9 12/08/2024
6.12.0 7 11/14/2024
6.11.1 9 11/06/2024
6.11.0 6 11/17/2024
6.11.0-preview.2 7 11/14/2024
6.10.2 7 11/14/2024
6.10.1 5 11/17/2024
6.10.0 10 05/23/2024
6.9.1 10 05/01/2024
6.8.1 7 06/01/2024
6.8.0 10 06/01/2024
6.7.1 10 06/01/2024
6.7.0 9 05/14/2024
6.6.2 10 06/01/2024
6.6.1 9 06/22/2023
6.6.0 9 06/22/2023
6.6.0-preview.3 8 05/14/2024
6.5.1 8 05/14/2024
6.5.0 10 06/01/2024
6.4.3 7 06/01/2024
6.4.2 9 06/01/2024
6.4.0 7 06/01/2024
6.3.4 7 04/24/2024
6.3.3 7 06/22/2023
6.2.4 7 06/01/2024
6.2.2 6 06/01/2024
6.2.1 12 08/14/2023
6.0.6 7 04/29/2024
6.0.5 10 05/14/2024
6.0.3-rc.1 7 06/01/2024
6.0.2 10 05/14/2024
5.11.6 8 04/24/2024
5.11.5 9 06/22/2023
5.11.3 8 06/22/2023
5.11.0 9 01/04/2024
5.9.3 9 05/14/2024
5.8.1 10 05/12/2024
5.7.3-rtm.5 8 06/22/2023
5.7.2 8 06/01/2024
5.6.0 8 06/01/2024
5.5.1 8 05/14/2024
5.4.0 9 05/31/2024
5.3.1 8 06/01/2024
5.2.1 9 05/14/2024
5.0.2 7 05/14/2024
4.9.6 13 05/14/2024
4.8.2 9 06/01/2024
4.6.4 8 06/01/2024
4.5.3 10 04/25/2023
4.3.1 7 06/01/2024
4.2.0 8 06/01/2024
4.1.0 8 06/01/2024
4.0.0 7 05/14/2024
3.5.0 10 04/25/2023
3.4.4-rtm-final 7 05/14/2024
3.4.3 9 06/01/2024
3.3.0 9 06/01/2024
3.2.0 7 06/01/2024