NuGet.Protocol 6.13.2

Prefix Reserved
dotnet add package NuGet.Protocol --version 6.13.2
                    
NuGet\Install-Package NuGet.Protocol -Version 6.13.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NuGet.Protocol" Version="6.13.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="NuGet.Protocol" Version="6.13.2" />
                    
Directory.Packages.props
<PackageReference Include="NuGet.Protocol" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add NuGet.Protocol --version 6.13.2
                    
#r "nuget: NuGet.Protocol, 6.13.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=NuGet.Protocol&version=6.13.2
                    
Install NuGet.Protocol as a Cake Addin
#tool nuget:?package=NuGet.Protocol&version=6.13.2
                    
Install NuGet.Protocol as a Cake Tool

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (148)

Showing the top 5 NuGet packages that depend on NuGet.Protocol:

Package Downloads
NuGet.DependencyResolver.Core

NuGet's PackageReference dependency resolver implementation.

NuGet.Resolver

NuGet's dependency resolver for packages.config based projects.

Microsoft.CodeAnalysis.Analyzer.Testing

Roslyn Analyzer Test Framework Common Types.

NuGet.Credentials

NuGet client's authentication models.

Cake.NuGet

Cake Module providing NuGet install capabilities for i.e. preprocessor directives like #addin, #tool and #load

GitHub repositories (87)

Showing the top 20 popular GitHub repositories that depend on NuGet.Protocol:

Repository Stars
dotnet/aspnetcore
ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
icsharpcode/ILSpy
.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
elsa-workflows/elsa-core
A .NET workflows library
stride3d/stride
Stride (formerly Xenko), a free and open-source cross-platform C# game engine.
kurrent-io/KurrentDB
EventStoreDB, the event-native database. Designed for Event Sourcing, Event-Driven, and Microservices architectures
dotnet/Open-XML-SDK
Open XML SDK by Microsoft
cake-build/cake
:cake: Cake (C# Make) is a cross platform build automation system.
ravendb/ravendb
ACID Document Database
cyanfish/naps2
Scan documents to PDF and more, as simply as possible.
waf/CSharpRepl
A command line C# REPL with syntax highlighting – explore the language, libraries and nuget packages interactively.
dotnet/sdk
Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
angularsen/UnitsNet
Makes life working with units of measurement just a little bit better.
loic-sharma/BaGet
A lightweight NuGet and symbol server
serenity-is/Serenity
Business Apps Made Simple with Asp.Net Core MVC / TypeScript
open-rpa/openrpa
Free Open Source Enterprise Grade RPA
Pryaxis/TShock
☕️⚡️TShock provides Terraria servers with server-side characters, anti-cheat, and community management tools.
NuGetPackageExplorer/NuGetPackageExplorer
Create, update and deploy Nuget Packages with a GUI
ErikEJ/EFCorePowerTools
Entity Framework Core Power Tools - reverse engineering, migrations and model visualization in Visual Studio & CLI
microsoft/CsWin32
A source generator to add a user-defined set of Win32 P/Invoke methods and supporting types to a C# project.
stryker-mutator/stryker-net
Mutation testing for .NET core and .NET framework!
Version Downloads Last updated
6.13.2 149,133 2 months ago
6.13.1 101,279 2 months ago
6.12.1 624,713 5 months ago
6.12.0 2,085 5 months ago
6.11.1 730,069 7 months ago
6.11.0 6,051,468 8 months ago
6.11.0-preview.2 3,286 6/5/2024
6.10.2 17,429 8 months ago
6.10.1 516,144 10 months ago
6.10.0 450,579 5/21/2024
6.9.1 9,538,279 2/13/2024
6.8.1 59,662 2/13/2024
6.8.0 1,301,353 11/17/2023
6.7.1 144,074 2/14/2024
6.7.0 1,476,752 8/9/2023
6.6.2 28,810 2/13/2024
6.6.1 7,737,040 6/13/2023
6.6.0 81,934 5/17/2023 6.6.0 has at least one vulnerability with high severity.
6.6.0-preview.3 1,157 5/17/2023
6.5.1 169,372 6/13/2023
6.5.0 396,202 2/22/2023 6.5.0 has at least one vulnerability with high severity.
6.4.3 34,100 2/13/2024
6.4.2 205,061 6/13/2023
6.4.0 963,322 11/9/2022 6.4.0 has at least one vulnerability with high severity.
6.3.4 1,380,618 2/13/2024
6.3.3 236,475 6/14/2023
6.3.1 17,156,264 10/11/2022 6.3.1 has at least one vulnerability with high severity.
6.2.4 62,025 6/14/2023
6.2.2 57,326 10/11/2022 6.2.2 has at least one vulnerability with high severity.
6.1.0 638,884 2/16/2022 6.1.0 has at least one vulnerability with high severity.
6.0.6 14,370 2/13/2024
6.0.5 108,696 6/13/2023
6.0.3-rc.1 1,049 10/11/2022 6.0.3-rc.1 has at least one vulnerability with high severity.
6.0.2 14,562 6/14/2022 6.0.2 has at least one vulnerability with high severity.
5.11.6 163,900 2/13/2024
5.11.5 3,894,735 6/15/2023
5.11.3 325,483 10/11/2022 5.11.3 has at least one vulnerability with high severity.
5.10.0 3,887,505 6/15/2021 5.10.0 is deprecated because it is no longer maintained; 5.10.0 has at least one vulnerability with high severity.
5.9.3 127,042 10/11/2022 5.9.3 is deprecated because it is no longer maintained; 5.9.3 has at least one vulnerability with high severity.
5.8.1 201,718 1/16/2021 5.8.1 is deprecated because it is no longer maintained; 5.8.1 has at least one vulnerability with high severity.
5.7.3-rtm.5 799 10/11/2022 5.7.3-rtm.5 is deprecated because it is no longer maintained; 5.7.3-rtm.5 has at least one vulnerability with high severity.
5.7.2 9,383 6/14/2022 5.7.2 is deprecated because it is no longer maintained; 5.7.2 has at least one vulnerability with high severity.
5.6.0 4,612,935 5/20/2020 5.6.0 is deprecated because it is no longer maintained; 5.6.0 has at least one vulnerability with high severity.
5.5.1 105,101 4/3/2020 5.5.1 is deprecated because it is no longer maintained; 5.5.1 has at least one vulnerability with high severity.
5.4.0 384,355 12/3/2019 5.4.0 is deprecated because it is no longer maintained; 5.4.0 has at least one vulnerability with high severity.
5.3.1 293,054 10/25/2019 5.3.1 is deprecated because it is no longer maintained; 5.3.1 has at least one vulnerability with high severity.
5.2.1 798 6/14/2022 5.2.1 is deprecated because it is no longer maintained; 5.2.1 has at least one vulnerability with high severity.
5.1.0 248,897 5/21/2019 5.1.0 is deprecated because it is no longer maintained; 5.1.0 has at least one vulnerability with high severity.
5.0.2 36,496 5/14/2019 5.0.2 is deprecated because it is no longer maintained; 5.0.2 has at least one vulnerability with high severity.
4.9.6 8,696 10/11/2022 4.9.6 is deprecated because it is no longer maintained; 4.9.6 has at least one vulnerability with high severity.
4.8.2 37,884 3/12/2019 4.8.2 is deprecated because it is no longer maintained; 4.8.2 has at least one vulnerability with high severity.
4.7.3 1,228 3/15/2019 4.7.3 is deprecated because it is no longer maintained; 4.7.3 has at least one vulnerability with high severity.
4.6.4 12,680 3/15/2019 4.6.4 is deprecated because it is no longer maintained; 4.6.4 has at least one vulnerability with high severity.
4.5.3 27,464 3/15/2019 4.5.3 is deprecated because it is no longer maintained.
4.4.3 1,011 3/15/2019 4.4.3 is deprecated because it is no longer maintained.
4.3.1 10,295 3/12/2019 4.3.1 is deprecated because it is no longer maintained.