Soenneker.GitHub.ClientUtil 4.0.623

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.GitHub.ClientUtil --version 4.0.623
                    
NuGet\Install-Package Soenneker.GitHub.ClientUtil -Version 4.0.623
                    
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="Soenneker.GitHub.ClientUtil" Version="4.0.623" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.GitHub.ClientUtil" Version="4.0.623" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.GitHub.ClientUtil" />
                    
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 Soenneker.GitHub.ClientUtil --version 4.0.623
                    
#r "nuget: Soenneker.GitHub.ClientUtil, 4.0.623"
                    
#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.
#:package Soenneker.GitHub.ClientUtil@4.0.623
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.GitHub.ClientUtil&version=4.0.623
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.GitHub.ClientUtil&version=4.0.623
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.GitHub.ClientUtil

Provides lazy, cached access to the generated GitHub REST API client over an authenticated shared transport.

Installation

dotnet add package Soenneker.GitHub.ClientUtil

Configure and register

{
  "GH": {
    "Token": "your-github-token"
  }
}
using Soenneker.GitHub.ClientUtil.Registrars;

services.AddGitHubOpenApiClientUtilAsScoped();

Use the client

using Soenneker.GitHub.ClientUtil.Abstract;

public sealed class GitHubUserReader(IGitHubOpenApiClientUtil clients)
{
    public async Task Read(CancellationToken cancellationToken)
    {
        var client = await clients.Get(cancellationToken);
        var user = await client.User.GetAsync(
            cancellationToken: cancellationToken);
    }
}

The HTTP provider supplies the bearer token and required GitHub headers. The generated client therefore uses anonymous Kiota authentication and does not add a duplicate Authorization value.

Use AddGitHubOpenApiClientUtilAsSingleton() when the application should share one generated client. A scoped utility borrows the singleton HTTP provider, so disposing the scope does not destroy the shared transport.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on Soenneker.GitHub.ClientUtil:

Package Downloads
Soenneker.GitHub.Repositories.Tags

Creates, inspects, compares, and deletes GitHub repository tags

Soenneker.GitHub.Repositories

Creates, discovers, configures, and deletes GitHub repositories.

Soenneker.GitHub.Repositories.Secrets

Lists and manages GitHub Actions repository secrets

Soenneker.GitHub.Repositories.Readmes

Creates and replaces README.md files on GitHub repository branches

Soenneker.GitHub.Repositories.Pages

Reads, creates, updates, and deletes GitHub Pages site configuration.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.630 0 9/1/2026
4.0.629 0 9/1/2026
4.0.628 0 9/1/2026
4.0.627 0 8/31/2026
4.0.626 76 8/31/2026
4.0.625 201 8/31/2026
4.0.624 162 8/31/2026
4.0.623 97 8/31/2026
4.0.621 166 8/30/2026
4.0.619 1,909 8/30/2026
4.0.618 202 8/30/2026
4.0.616 135 8/30/2026
4.0.615 934 8/30/2026
4.0.613 115 8/30/2026
4.0.611 873 8/29/2026
4.0.609 227 8/29/2026
4.0.608 5,348 8/29/2026
4.0.607 4,420 8/28/2026
4.0.606 1,325 8/27/2026
4.0.605 1,191 8/26/2026
Loading failed

Update dependency Soenneker.GitHub.OpenApiClient to 4.0.226 (#1131)