NuGet.Packaging 6.7.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
182
Microsoft.DotNet.ProjectModel
Types to model a .NET Project
190
Microsoft.DotNet.ProjectModel
Types to model a .NET Project
230
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
180
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
218
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
218
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
178
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
180
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
178
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
210
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
602
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
190
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
182
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
201
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
213
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
215
NuGet.Client
NuGet v3 core library.
195
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
177
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
247
Nuke.Common
Cross-platform build automation system
184

.NET Framework 4.7.2

.NET 5.0

.NET Standard 2.0

Version Downloads Last updated
7.9.0 19 08/15/2026
7.6.0 38 05/12/2026
7.3.1 33 04/15/2026
7.3.0 55 02/12/2026
7.0.3 41 04/15/2026
7.0.1 70 11/25/2025
7.0.0 104 11/12/2025
6.14.3 43 04/15/2026
6.14.0 124 05/15/2025
6.13.2 145 03/31/2025
6.13.1 124 03/31/2025
6.12.5 44 04/15/2026
6.12.4 116 05/10/2025
6.12.1 169 11/14/2024
6.12.0 130 11/14/2024
6.11.2 43 04/15/2026
6.11.1 121 10/17/2024
6.11.0 195 08/19/2024
6.11.0-preview.2 148 07/22/2024
6.10.2 138 08/19/2024
6.10.1 164 07/22/2024
6.10.0 155 07/22/2024
6.9.1 145 07/22/2024
6.8.2 40 04/15/2026
6.8.1 154 07/22/2024
6.8.0 163 02/15/2024
6.7.1 176 07/22/2024
6.7.0 140 07/22/2024
6.6.2 162 07/22/2024
6.6.1 162 07/22/2024
6.6.0 145 07/22/2024
6.6.0-preview.3 144 07/22/2024
6.5.1 167 07/22/2024
6.5.0 155 07/22/2024
6.4.3 166 07/22/2024
6.4.2 154 07/22/2024
6.4.0 168 07/22/2024
6.3.4 146 07/22/2024
6.3.3 155 07/22/2024
6.3.1 255 02/04/2024
6.2.4 165 07/22/2024
6.2.2 151 07/22/2024
6.1.0 163 07/22/2024
6.0.6 154 07/22/2024
6.0.5 161 07/22/2024
6.0.3-rc.1 146 07/22/2024
6.0.2 142 07/22/2024
5.11.7 45 04/15/2026
5.11.6 138 07/22/2024
5.11.5 159 07/22/2024
5.11.3 144 07/22/2024
5.11.0 186 02/04/2024
5.10.0 163 07/22/2024
5.9.3 157 07/22/2024
5.8.1 155 07/22/2024
5.7.3-rtm.5 141 07/22/2024
5.7.2 141 07/22/2024
5.6.0 160 07/22/2024
5.5.1 181 07/22/2024
5.4.0 161 07/22/2024
5.3.1 132 07/22/2024
5.2.1 129 07/22/2024
5.1.0 138 07/22/2024
5.0.2 156 07/22/2024
4.9.7 43 04/15/2026
4.9.6 143 07/22/2024
4.8.2 163 07/22/2024
4.7.3 159 07/22/2024
4.6.4 167 07/22/2024
4.5.3 155 07/22/2024
4.4.3 144 07/22/2024
4.3.1 158 07/22/2024
4.2.0 147 07/22/2024
4.1.0 157 07/22/2024
4.0.0 143 07/22/2024
3.5.0 125 07/22/2024
3.4.4-rtm-final 156 07/22/2024
3.4.3 141 07/22/2024
3.3.0 150 07/22/2024
3.2.0 135 07/22/2024