NuGet.Protocol 6.12.1

NuGet.Protocol

NuGet.Protocol is a NuGet client SDK library that provides a set of APIs for interacting with NuGet feeds. It provides a way for developers to query NuGet feeds to discover packages and their dependencies, and also to download packages and their associated assets.

Usage

At the center of this library are the PackageSource and SourceRepository types, which represent a NuGet source that may be a file source or an http based source implementing the V2 or V3 protocol.

PackageSource localSource = new PackageSource(@"D:\LocalSource");
SourceRepository localRepository = Repository.Factory.GetCoreV3(localSource);

SourceRepository repository = Repository.Factory.GetCoreV3("https://api.nuget.org/v3/index.json");

The SourceRepository then has a GetResourceAsync method that you can use to acquire implementations of INuGetResource that often are V3 resources.

FindPackageByIdResource resource = await repository.GetResourceAsync<FindPackageByIdResource>(); 

Examples

Search packages

Search for "json" packages using the NuGet V3 Search API:

PackageSearchResource resource = await repository.GetResourceAsync<PackageSearchResource>();
SearchFilter searchFilter = new SearchFilter(includePrerelease: true);

IEnumerable<IPackageSearchMetadata> results = await resource.SearchAsync(
    "json",
    searchFilter,
    skip: 0,
    take: 20,
    NullLogger.Instance,
    CancellationToken.None);

Download a package

Download Newtonsoft.Json v12.0.1 using the NuGet V3 Package Content API:

FindPackageByIdResource resource = await repository.GetResourceAsync<FindPackageByIdResource>();

string packageId = "Newtonsoft.Json";
NuGetVersion packageVersion = new NuGetVersion("12.0.1");
using MemoryStream packageStream = new MemoryStream();

await resource.CopyNupkgToStreamAsync(
    packageId,
    packageVersion,
    packageStream,
    new SourceCacheContext(),
    NullLogger.Instance,
    CancellationToken.None);

Push a package

Push a package using the NuGet V3 Push and Delete API:

PackageUpdateResource resource = await repository.GetResourceAsync<PackageUpdateResource>();

await resource.Push(
    "MyPackage.nupkg",
    symbolSource: null,
    timeoutInSecond: 5 * 60,
    disableBuffering: false,
    getApiKey: packageSource => "my-api-key",
    getSymbolApiKey: packageSource => null,
    noServiceEndpoint: false,
    skipDuplicate: false,
    symbolPackageUpdateResource: null,
    NullLogger.Instance);

Additional documentation

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

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

Packages Downloads
NuGet.Resolver
NuGet's dependency resolver for packages.config based projects.
48
NuGet.Resolver
NuGet's dependency resolver for packages.config based projects.
49
NuGet.Resolver
NuGet's dependency resolver for packages.config based projects.
53
NuGet.Resolver
NuGet's dependency resolver for packages.config based projects.
55
NuGet.Resolver
NuGet's dependency resolver for packages.config based projects.
58
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
49
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
50
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
51
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
52
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
53
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
63
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package
77
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
51
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
53
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
63
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
70
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
71
NuGet.Resolver
NuGet's dependency resolver within the NuGet.Packaging package.
75

.NET Framework 4.7.2

.NET 5.0

.NET Standard 2.0

Version Downloads Last updated
6.12.1 10 11/23/2024
6.12.0 9 11/23/2024
6.11.1 13 10/04/2024
6.11.0 8 08/14/2024
6.11.0-preview.2 13 06/07/2024
6.10.2 10 08/14/2024
6.10.1 8 06/28/2024
6.10.0 11 05/22/2024
6.9.1 11 03/10/2024
6.8.1 10 03/10/2024
6.8.0 14 11/19/2023
6.7.1 10 03/10/2024
6.7.0 13 09/11/2023
6.6.2 14 03/10/2024
6.6.1 26 06/18/2023
6.6.0 25 06/18/2023
6.6.0-preview.3 23 06/22/2023
6.5.1 18 06/22/2023
6.5.0 26 04/04/2023
6.4.3 12 03/10/2024
6.4.2 17 06/22/2023
6.4.0 89 12/16/2022
6.3.4 10 03/10/2024
6.3.3 13 06/22/2023
6.3.1 20 10/15/2022
6.3.0 48 09/09/2022
6.2.4 13 06/22/2023
6.2.2 54 10/15/2022
6.2.1 22 09/10/2022
6.2.0 20 09/10/2022
6.1.0 35 09/10/2022
6.0.6 11 03/10/2024
6.0.5 20 06/22/2023
6.0.3-rc.1 24 10/15/2022
6.0.2 93 09/10/2022
6.0.0 81 09/09/2022
6.0.0-preview.4.243 51 09/23/2022
6.0.0-preview.3 71 10/15/2022
5.11.6 12 03/10/2024
5.11.5 18 06/22/2023
5.11.3 37 10/15/2022
5.11.2 54 09/12/2022
5.11.0 27 06/27/2022
5.10.0 42 09/11/2022
5.10.0-preview.2.7185 28 09/25/2022
5.9.3 45 10/15/2022
5.9.2 66 09/15/2022
5.9.1 26 09/08/2022
5.9.0 31 09/12/2022
5.9.0-preview.2 53 09/22/2022
5.8.1 32 09/09/2022
5.8.0 24 09/09/2022
5.8.0-preview.3.6823 28 09/21/2022
5.8.0-preview.2.6776 36 09/23/2022
5.8.0-preview.1 56 10/15/2022
5.7.3-rtm.5 38 10/15/2022
5.7.2 41 09/10/2022
5.7.1 27 09/12/2022
5.7.0 88 09/10/2022
5.7.0-rtm.6702 30 09/09/2022
5.7.0-preview.3.6653 78 09/21/2022
5.7.0-preview.2.6618 47 09/24/2022
5.7.0-preview.1.6592 18 09/22/2022
5.6.0 99 06/27/2022
5.6.0-preview.3.6558 17 09/24/2022
5.6.0-preview.2.6489 31 09/21/2022
5.6.0-preview.1.6483 42 09/21/2022
5.5.1 44 09/10/2022
5.5.0 45 09/12/2022
5.5.0-preview.2.6382 32 09/24/2022
5.5.0-preview.1.6319 20 10/15/2022
5.4.0 91 09/12/2022
5.3.1 51 09/11/2022
5.3.0 35 09/12/2022
5.3.0-rtm.6192 32 09/09/2022
5.2.1 37 09/10/2022
5.2.0 45 09/09/2022
5.1.0 30 09/11/2022
5.1.0-preview2.5965 26 09/23/2022
5.0.2 96 09/09/2022
5.0.0 63 09/09/2022
5.0.0-rtm.5867 81 09/10/2022
5.0.0-rtm.5856 16 09/10/2022
5.0.0-preview3.5800 47 09/22/2022
5.0.0-preview2.5782 46 09/22/2022
4.9.6 28 10/15/2022
4.9.5 91 09/09/2022
4.9.4 40 06/27/2022
4.9.3 31 09/10/2022
4.9.2 77 09/10/2022
4.9.2-rtm.5706 60 09/09/2022
4.9.1 33 09/10/2022
4.9.0-rtm.5658 23 09/10/2022
4.8.2 28 09/09/2022
4.8.0 95 09/10/2022
4.8.0-rtm.5362 24 09/11/2022
4.8.0-preview3.5278 16 10/15/2022
4.8.0-preview1.5156 20 09/23/2022
4.7.3 46 09/09/2022
4.7.2 20 09/11/2022
4.7.0 64 09/09/2022
4.7.0-rtm.5148 49 09/11/2022
4.7.0-rtm.5104 23 09/11/2022
4.7.0-preview4.5065 29 09/25/2022
4.7.0-preview1-4986 42 09/22/2022
4.6.4 66 09/11/2022
4.6.3 30 09/12/2022
4.6.2 64 09/11/2022
4.6.1 52 09/09/2022
4.6.0 35 09/11/2022
4.6.0-rtm-4918 92 09/12/2022
4.6.0-rtm-4825 62 09/11/2022
4.6.0-rtm-4791 47 09/10/2022
4.5.3 58 09/11/2022
4.5.2 41 09/13/2022
4.5.0 60 09/09/2022
4.5.0-rtm-4651 27 09/10/2022
4.4.3 56 09/12/2022
4.4.2 75 09/11/2022
4.4.0 57 09/09/2022
4.4.0-preview3-4475 62 09/22/2022
4.3.1 70 09/11/2022
4.3.0 51 09/12/2022
4.3.0-rtm-4324 70 09/10/2022
4.3.0-preview4 34 09/09/2022
4.3.0-preview3-4168 31 10/15/2022