NuGet.Protocol 7.6.0

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.DependencyResolver.Core
NuGet client library.
151
NuGet.DependencyResolver.Core
NuGet client library.
146
NuGet.DependencyResolver.Core
NuGet client library.
145
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
140
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
139
NuGet.DependencyResolver.Core
NuGet client library.
138
NuGet.DependencyResolver.Core
NuGet client library.
137
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
135
NuGet.DependencyResolver.Core
NuGet client library.
135
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
134
NuGet.DependencyResolver.Core
NuGet client library.
134
NuGet.DependencyResolver.Core
NuGet client library.
133
NuGet.DependencyResolver.Core
NuGet client library.
132
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
132
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
131
NuGet.DependencyResolver.Core
NuGet client library.
130
NuGet.DependencyResolver.Core
NuGet client library.
129
NuGet.DependencyResolver.Core
NuGet client library. Microsoft holds the copyright for this NuGet package. .NET Foundation holds the copyright to the source.
125

.NET Framework 4.7.2

.NET 8.0

Version Downloads Last updated
7.6.0 6 5/12/2026
7.3.1 11 5/3/2026
7.3.0 19 2/14/2026
7.0.3 10 5/4/2026
7.0.1 31 11/25/2025
7.0.0 51 11/13/2025
6.14.3 9 5/3/2026
6.14.0 94 5/15/2025
6.13.2 85 3/1/2025
6.13.1 96 2/14/2025
6.12.5 11 5/3/2026
6.12.4 88 5/8/2025
6.12.1 114 11/16/2024
6.12.0 96 11/18/2024
6.11.2 9 5/3/2026
6.11.1 104 10/4/2024
6.11.0 115 8/14/2024
6.11.0-preview.2 107 6/6/2024
6.10.2 119 8/12/2024
6.10.1 117 6/27/2024
6.10.0 105 5/22/2024
6.9.1 117 2/24/2024
6.8.2 11 5/3/2026
6.8.1 102 2/24/2024
6.8.0 105 11/24/2023
6.7.1 110 2/24/2024
6.7.0 128 8/24/2023
6.6.2 126 2/22/2024
6.6.1 120 8/4/2023
6.6.0 119 5/20/2023
6.6.0-preview.3 120 5/20/2023
6.5.1 122 8/4/2023
6.5.0 111 2/25/2023
6.4.3 119 2/22/2024
6.4.2 116 7/30/2023
6.4.0 117 11/17/2022
6.3.4 98 2/24/2024
6.3.3 122 8/4/2023
6.3.1 111 12/7/2022
6.3.0 123 9/18/2022
6.2.4 110 7/12/2023
6.2.2 109 12/7/2022
6.2.1 120 6/30/2022
6.2.0 127 7/1/2022
6.1.0 128 7/1/2022
6.0.6 116 2/24/2024
6.0.5 118 7/17/2023
6.0.3-rc.1 109 12/7/2022
6.0.2 126 7/1/2022
6.0.0 119 7/1/2022
6.0.0-preview.4.243 109 7/1/2022
6.0.0-preview.3 122 7/1/2022
5.11.7 9 5/3/2026
5.11.6 109 2/25/2024
5.11.5 118 8/4/2023
5.11.3 115 12/7/2022
5.11.2 114 7/1/2022
5.11.0 120 7/1/2022
5.10.0 131 7/1/2022
5.10.0-preview.2.7185 127 7/1/2022
5.9.3 115 11/9/2022
5.9.2 118 7/1/2022
5.9.1 118 7/1/2022
5.9.0 121 7/1/2022
5.9.0-preview.2 112 7/1/2022
5.8.1 149 7/1/2022
5.8.0 128 7/1/2022
5.8.0-preview.3.6823 107 7/1/2022
5.8.0-preview.2.6776 128 7/1/2022
5.8.0-preview.1 132 7/1/2022
5.7.3-rtm.5 103 12/7/2022
5.7.2 126 7/1/2022
5.7.1 126 7/1/2022
5.7.0 119 7/1/2022
5.7.0-rtm.6702 104 7/1/2022
5.7.0-preview.3.6653 117 7/1/2022
5.7.0-preview.2.6618 109 7/1/2022
5.7.0-preview.1.6592 111 7/1/2022
5.6.0 137 7/1/2022
5.6.0-preview.3.6558 135 7/1/2022
5.6.0-preview.2.6489 123 7/1/2022
5.6.0-preview.1.6483 122 7/1/2022
5.5.1 116 7/1/2022
5.5.0 128 7/1/2022
5.5.0-preview.2.6382 122 7/1/2022
5.5.0-preview.1.6319 115 7/1/2022
5.4.0 118 7/1/2022
5.3.1 115 7/1/2022
5.3.0 116 7/1/2022
5.3.0-rtm.6192 130 7/1/2022
5.2.1 128 7/1/2022
5.2.0 126 7/1/2022
5.1.0 148 7/1/2022
5.1.0-preview2.5965 108 7/1/2022
5.0.2 125 7/1/2022
5.0.0 122 7/1/2022
5.0.0-rtm.5867 114 7/1/2022
5.0.0-rtm.5856 117 7/1/2022
5.0.0-preview3.5800 126 7/1/2022
5.0.0-preview2.5782 122 7/1/2022
4.9.7 10 5/3/2026
4.9.6 124 11/5/2022
4.9.5 128 7/1/2022
4.9.4 117 7/1/2022
4.9.3 116 7/1/2022
4.9.2 107 7/1/2022
4.9.2-rtm.5706 122 7/1/2022
4.9.1 117 7/1/2022
4.9.0-rtm.5658 110 7/1/2022
4.8.2 110 7/1/2022
4.8.0 147 7/1/2022
4.8.0-rtm.5362 117 7/1/2022
4.8.0-preview3.5278 119 7/1/2022
4.8.0-preview1.5156 95 7/1/2022
4.7.3 128 7/1/2022
4.7.2 119 7/1/2022
4.7.0 141 7/1/2022
4.7.0-rtm.5148 119 7/1/2022
4.7.0-rtm.5104 103 7/1/2022
4.7.0-preview4.5065 104 7/1/2022
4.7.0-preview1-4986 131 7/1/2022
4.6.4 128 7/1/2022
4.6.3 126 7/1/2022
4.6.2 115 7/1/2022
4.6.1 116 7/1/2022
4.6.0 123 7/1/2022
4.6.0-rtm-4918 106 7/1/2022
4.6.0-rtm-4825 112 7/1/2022
4.6.0-rtm-4791 101 7/1/2022
4.5.3 136 7/1/2022
4.5.2 121 7/1/2022
4.5.0 123 7/1/2022
4.5.0-rtm-4651 113 7/1/2022
4.4.3 133 7/1/2022
4.4.2 115 7/1/2022
4.4.0 128 7/1/2022
4.4.0-preview3-4475 103 7/1/2022
4.3.1 121 7/1/2022
4.3.0 108 7/1/2022
4.3.0-rtm-4324 120 7/1/2022
4.3.0-preview4 136 7/1/2022
4.3.0-preview3-4168 123 7/1/2022