NuGet.Packaging 6.12.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
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
2,842
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
1,691
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
826
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
816
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
809
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
807
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
806
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
804
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
799
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
799
Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore
Contains Entity Framework Core Services used by ASP.NET Core Code Generators.
442
Microsoft.VisualStudio.Web.CodeGeneration
Contains the CodeGenCommand that finds the appropriate code generator and invokes it from project dependencies.
435
Microsoft.VisualStudio.Web.CodeGeneration.Core
Contains the core infrastructure used by ASP.NET Core Code Generators.
435
Microsoft.VisualStudio.Web.CodeGeneration.Utils
Contains utilities used by ASP.NET Core Code Generation packages.
434
Microsoft.VisualStudio.Web.CodeGenerators.Mvc
Code Generators for ASP.NET Core MVC. Contains code generators for MVC Controllers and Views.
433
Microsoft.VisualStudio.Web.CodeGeneration.Templating
Contains Razor based templating host used by ASP.NET Core Code Generators.
431
Microsoft.VisualStudio.Web.CodeGeneration.Design
Code Generation tool for ASP.NET Core. Contains the dotnet-aspnet-codegenerator command used for generating controllers and views.
431
Microsoft.DotNet.Scaffolding.Shared
Contains interfaces for Project Model and messaging for scaffolding.
430
NuGet.Protocol
NuGet's implementation for interacting with feeds. Contains functionality for all feed types.
135
Microsoft.DotNet.Cli.Utils
Package Description
37

.NET Framework 4.7.2

.NET Standard 2.0

.NET 5.0

Version Downloads Last updated
6.12.1 4 11/13/2024
6.12.0 4 11/13/2024
6.11.1 7 10/19/2024
6.11.0 9 08/14/2024
6.11.0-preview.2 10 06/05/2024
6.10.2 6 08/14/2024
6.10.1 10 07/04/2024
6.10.0 11 06/08/2024
6.9.1 12 02/27/2024
6.8.1 16 02/27/2024
6.8.0 14 12/30/2023
6.7.1 17 02/20/2024
6.7.0 16 11/08/2023
6.6.2 12 03/14/2024
6.6.1 131 08/05/2023
6.6.0 18 06/21/2023
6.6.0-preview.3 15 06/09/2023
6.5.1 11 11/17/2023
6.5.0 15 09/18/2023
6.4.3 14 03/09/2024
6.4.2 16 09/06/2023
6.4.0 11 09/23/2023
6.3.4 15 02/27/2024
6.3.3 17 09/30/2023
6.3.1 1,668 05/08/2023
6.2.4 15 10/27/2023
6.2.2 9 10/13/2023
6.2.1 438 07/22/2022
6.1.0 14 10/13/2023
6.0.6 11 02/27/2024
6.0.5 17 06/23/2023
6.0.3-rc.1 11 12/30/2023
6.0.2 13 06/07/2023
5.11.6 13 02/27/2024
5.11.5 13 11/18/2023
5.11.3 23 06/07/2023
5.11.0 2,458 11/12/2021
5.10.0 15 07/04/2023
5.9.3 17 10/04/2023
5.8.1 17 06/08/2023
5.7.3-rtm.5 17 06/09/2023
5.7.2 15 10/12/2023
5.6.0 11 12/30/2023
5.5.1 14 09/10/2023
5.4.0 13 07/26/2023
5.3.1 19 06/09/2023
5.2.1 14 10/13/2023
5.1.0 16 06/08/2023
5.0.2 18 07/04/2023
4.9.6 13 07/22/2023
4.8.2 16 06/19/2023
4.7.3 16 06/07/2023
4.6.4 13 06/19/2023
4.5.3 19 09/27/2023
4.4.3 13 10/12/2023
4.3.1 13 10/13/2023
4.2.0 14 07/26/2023
4.1.0 18 10/12/2023
4.0.0 18 06/09/2023
3.5.0 12 08/19/2023
3.4.4-rtm-final 15 10/16/2023
3.4.3 15 10/12/2023
3.3.0 18 09/30/2023
3.2.0 15 10/13/2023