brhmedia.GitHubUpdater 1.7.5.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package brhmedia.GitHubUpdater --version 1.7.5.3                
NuGet\Install-Package brhmedia.GitHubUpdater -Version 1.7.5.3                
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="brhmedia.GitHubUpdater" Version="1.7.5.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add brhmedia.GitHubUpdater --version 1.7.5.3                
#r "nuget: brhmedia.GitHubUpdater, 1.7.5.3"                
#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.
// Install brhmedia.GitHubUpdater as a Cake Addin
#addin nuget:?package=brhmedia.GitHubUpdater&version=1.7.5.3

// Install brhmedia.GitHubUpdater as a Cake Tool
#tool nuget:?package=brhmedia.GitHubUpdater&version=1.7.5.3                

GitHubUpdater

C# REST client for communicating with the GitHub API. Specifically designed for update checks relating to the latest GitHub release of the specified repo.

It is crucial that you tag your releases with your version number; preferably with v prepended like so: v1.0.0.

Initialise an update check like so:

var version = new Version(Application.ProductVersion);
var client = new UpdateClient()
{
    Author = "<Your GitHub Username",
    RepositoryName = "<Your Repo Name>",
    CurrentInstalledVersion = version,
	DebugMode = true
};

// Start API call and update check.
// If an update is available, the client will show a form
// with release information from GitHub. Otherwise,
// a simple messagebox is displayed informing the user that
// they are up-to-date.
client.CheckIfLatest();

If set to true, DebugMode enables Update Channel selection; in this mode, the developer is able to check for releases that are tagged as a Pre-release by GitHub.

You may find this mode useful if your application permits 'Unstable' build downloads.

Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.5.6 66 11/17/2024
1.7.5.5 59 11/17/2024
1.7.5.4 60 11/17/2024
1.7.5.3 62 11/17/2024
1.7.5.2 64 11/17/2024
1.7.5.1 63 11/17/2024
1.7.5 58 11/17/2024
1.7.4 66 11/17/2024

Initial release