NuGet.Protocol 6.11.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.DependencyResolver.Core
NuGet client library.
|
25 |
NuGet.DependencyResolver.Core
NuGet client library.
|
30 |
NuGet.DependencyResolver.Core
NuGet client library.
|
36 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
26 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
27 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
29 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
31 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
34 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
58 |
NuGet.DependencyResolver.Core
NuGet's PackageReference dependency resolver implementation.
|
113 |
.NET Framework 4.7.2
- NuGet.Packaging (>= 6.11.1)
- System.Text.Json (>= 7.0.3)
.NET 5.0
- NuGet.Packaging (>= 6.11.1)
.NET Standard 2.0
- NuGet.Packaging (>= 6.11.1)
- System.Text.Json (>= 7.0.3)
Version | Downloads | Last updated |
---|---|---|
6.11.1 | 3 | 10/19/2024 |
6.11.0 | 9 | 08/22/2024 |
6.11.0-preview.2 | 31 | 07/22/2024 |
6.10.2 | 4 | 08/22/2024 |
6.10.1 | 16 | 07/22/2024 |
6.10.0 | 19 | 07/22/2024 |
6.9.1 | 28 | 07/04/2024 |
6.8.1 | 24 | 07/22/2024 |
6.8.0 | 15 | 07/22/2024 |
6.7.1 | 21 | 07/22/2024 |
6.7.0 | 18 | 07/22/2024 |
6.6.2 | 24 | 07/22/2024 |
6.6.1 | 16 | 07/22/2024 |
6.6.0 | 20 | 07/22/2024 |
6.6.0-preview.3 | 16 | 07/22/2024 |
6.5.1 | 23 | 07/22/2024 |
6.5.0 | 16 | 07/22/2024 |
6.4.3 | 18 | 07/22/2024 |
6.4.2 | 18 | 07/22/2024 |
6.4.0 | 16 | 07/22/2024 |
6.3.4 | 18 | 07/22/2024 |
6.3.3 | 16 | 07/22/2024 |
6.3.1 | 108 | 02/04/2024 |
6.2.4 | 23 | 07/22/2024 |
6.2.2 | 24 | 07/22/2024 |
6.1.0 | 22 | 07/22/2024 |
6.0.6 | 25 | 07/22/2024 |
6.0.5 | 24 | 07/22/2024 |
6.0.3-rc.1 | 18 | 07/22/2024 |
6.0.2 | 22 | 07/22/2024 |
5.11.6 | 30 | 07/22/2024 |
5.11.5 | 21 | 07/22/2024 |
5.11.3 | 29 | 07/22/2024 |
5.11.0 | 37 | 02/04/2024 |
5.10.0 | 16 | 07/22/2024 |
5.9.3 | 11 | 07/22/2024 |
5.8.1 | 26 | 07/22/2024 |
5.7.3-rtm.5 | 27 | 07/22/2024 |
5.7.2 | 17 | 07/22/2024 |
5.6.0 | 18 | 07/22/2024 |
5.5.1 | 14 | 07/22/2024 |
5.4.0 | 21 | 07/22/2024 |
5.3.1 | 17 | 07/22/2024 |
5.2.1 | 20 | 07/22/2024 |
5.1.0 | 24 | 07/22/2024 |
5.0.2 | 16 | 07/22/2024 |
4.9.6 | 22 | 07/22/2024 |
4.8.2 | 25 | 07/22/2024 |
4.7.3 | 23 | 07/22/2024 |
4.6.4 | 20 | 07/22/2024 |
4.5.3 | 18 | 08/10/2024 |
4.4.3 | 16 | 07/22/2024 |
4.3.1 | 19 | 07/22/2024 |