NuGet.Packaging 7.3.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.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
19
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
16
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
16
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.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
14
Microsoft.DotNet.Cli.Utils
Microsoft.DotNet.Cli.Utils
13
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
13
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
13
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
12
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
12
Microsoft.DotNet.ProjectModel
Types to model a .NET Project
12
Microsoft.DotNet.Cli.Utils
Package Description
12
NuGet.Protocol.Core.v3
NuGet Protocol for 3.1.0 servers
12
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
12
NuGet.Repositories
NuGet.Repositories
12
NuGet.Packaging.Core
The (former home to) core data structures for NuGet.Packaging. Contains only the type forwarders to the new assembly.
12
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
12
NuGet.Repositories
NuGet v3 core library.
12
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
12

.NET Framework 4.7.2

.NET 8.0

Version Downloads Last updated
7.3.1 1 2026/4/22
7.3.0 4 2026/2/17
7.0.3 1 2026/4/23
7.0.1 6 2025/11/30
7.0.0 5 2025/11/13
6.14.3 1 2026/4/24
6.14.0 14 2025/5/24
6.13.2 8 2025/6/10
6.13.1 20 2025/6/10
6.12.5 1 2026/4/23
6.12.4 11 2025/5/24
6.12.1 12 2025/6/10
6.12.0 10 2025/5/25
6.11.2 1 2026/4/23
6.11.1 11 2025/6/8
6.11.0 7 2025/6/8
6.11.0-preview.2 6 2025/6/8
6.10.2 17 2025/5/25
6.10.1 10 2025/5/25
6.10.0 8 2025/6/8
6.9.1 9 2025/6/7
6.8.2 1 2026/4/23
6.8.1 13 2025/6/7
6.8.0 9 2025/6/10
6.7.1 13 2025/6/9
6.7.0 7 2025/6/10
6.6.2 10 2025/6/8
6.6.1 16 2025/6/10
6.6.0 8 2025/6/10
6.6.0-preview.3 7 2025/6/9
6.5.1 16 2025/6/10
6.5.0 7 2025/6/8
6.4.3 6 2025/6/10
6.4.2 16 2025/6/9
6.4.0 6 2025/6/10
6.3.4 7 2025/6/9
6.3.3 7 2025/6/10
6.3.1 9 2025/6/8
6.2.4 11 2025/6/9
6.2.2 7 2025/6/9
6.1.0 7 2025/6/9
6.0.6 9 2025/6/8
6.0.5 8 2025/5/25
6.0.3-rc.1 9 2025/6/9
6.0.2 7 2025/6/8
5.11.7 1 2026/4/23
5.11.6 11 2025/6/9
5.11.5 7 2025/5/23
5.11.3 5 2025/4/17
5.11.0 6 2025/6/13
5.10.0 8 2025/6/8
5.9.3 11 2025/6/7
5.8.1 8 2025/6/8
5.7.3-rtm.5 8 2025/6/7
5.7.2 8 2025/6/8
5.6.0 8 2025/6/8
5.5.1 9 2025/6/10
5.4.0 8 2025/6/10
5.3.1 9 2025/6/8
5.2.1 12 2025/6/9
5.1.0 8 2025/6/9
5.0.2 8 2025/6/9
4.9.7 1 2026/4/23
4.9.6 11 2025/6/10
4.8.2 7 2025/6/7
4.7.3 7 2025/6/9
4.6.4 9 2025/6/8
4.5.3 11 2025/6/9
4.4.3 8 2025/6/8
4.3.1 7 2025/6/9
4.2.0 7 2025/6/7
4.1.0 9 2025/6/7
4.0.0 8 2025/6/10
3.5.0 7 2025/6/8
3.4.4-rtm-final 8 2025/5/29
3.4.3 11 2025/6/8
3.3.0 8 2025/6/8
3.2.0 8 2025/6/6