jenkins.sharp 1.0.4

dotnet add package jenkins.sharp --version 1.0.4
NuGet\Install-Package jenkins.sharp -Version 1.0.4
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.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add jenkins.sharp --version 1.0.4
#r "nuget: jenkins.sharp, 1.0.4"
#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.4

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

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

You can find the example project here.

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 MyJobName = "YOUR_JOB_NAME";

// Fetches information regarding a specific job and its recent status
var jobStatus = await client.GetJobInfoAsync(
    jobName: MyJobName
);
// Fetches information regarding a specific build inside a job
var buildStatus = await client.GetBuildInfoAsync(
    jobName: MyJobName,
    buildNo: jobStatus.LastSuccessfulBuild.Number
);

Console.WriteLine($"{jobStatus.FullName} is currently {jobStatus.Color}.");
Console.WriteLine($"Last successful is: #{jobStatus.LastSuccessfulBuild.Number}");

You can also iterate through all jobs on the server, or in a folder:

var jobCollection = await client.GetAllJobsAsync(); // To fetch jobs inside a folder, use the overload GetAllJobs(string)

foreach(var job in jobCollection) {
    Console.WriteLine($"Name: {job.Name}");
    Console.WriteLine($"Url: {job.Url}");
    Console.WriteLine($"Job type: {job.JobType}");
}
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.0.4 58 6/11/2024
1.0.3 62 6/10/2024
1.0.2 69 6/3/2024
1.0.1 79 5/30/2024
1.0.0 81 5/30/2024