jonteohr.jenkins-sharp 1.0.0

Prefix Reserved
dotnet add package jonteohr.jenkins-sharp --version 1.0.0                
NuGet\Install-Package jonteohr.jenkins-sharp -Version 1.0.0                
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="jonteohr.jenkins-sharp" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add jonteohr.jenkins-sharp --version 1.0.0                
#r "nuget: jonteohr.jenkins-sharp, 1.0.0"                
#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 jonteohr.jenkins-sharp as a Cake Addin
#addin nuget:?package=jonteohr.jenkins-sharp&version=1.0.0

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

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 jonteohr.jenkins-sharp

PackagerManager

NuGet\Install-Package jonteohr.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.0 110 9/2/2024