jenkins.sharp 1.0.1

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

// Install jenkins.sharp as a Cake Tool
#tool nuget:?package=jenkins.sharp&version=1.0.1

jenkins-sharp alternate text is missing from this package README image

Basic C# wrapper for using Jenkins HTTP/REST API.

Setup

Add the api to your project from nuget

Dotnet CLI

dotnet add package jenkins.sharp

PackagerManager

NuGet\Install-Package jenkins.sharp

Usage

Create the JenkinsClient that you need to query build statuses:

var client = new JenkinsClientBuilder()
    .SetUrl(YOUR_URL_TO_JENKINS)
    .Build();

Then to query a specific build:

var jobName = "YOUR_JOB_NAME";
var jobStatus = await client.GetJobInfo(jobName);

Console.WriteLine($"{jobStatus.FullName} is currently {jobStatus.Color}.");
Console.WriteLine($"Last successful is: #{jobStatus.LastSuccessfulBuild.Number}");
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.  net6.0-windows7.0 is compatible.  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.  net8.0-windows7.0 is compatible. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 is compatible.  net471 is compatible.  net472 is compatible.  net48 is compatible.  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.1.1 24 6/27/2024
1.1.0 25 6/27/2024
1.0.4 60 6/11/2024
1.0.3 64 6/10/2024
1.0.2 71 6/3/2024
1.0.1 80 5/30/2024
1.0.0 82 5/30/2024