A .NET client library for interacting with a Docker Registry API (v2 only).
Add via the dotnet CLI:
dotnet add package Docker.Registry.Client
var configuration = new RegistryClientConfiguration("localhost:5000");
using (var client = configuration.CreateClient())
{
await client.System.PingAsync();
}