jenkins.sharp
1.1.2
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Framework 4.6.1
This package targets .NET Framework 4.6.1. The package is compatible with this framework or higher.
Suggested Alternatives
dotnet add package jenkins.sharp --version 1.1.2
NuGet\Install-Package jenkins.sharp -Version 1.1.2
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.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add jenkins.sharp --version 1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: jenkins.sharp, 1.1.2"
#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.1.2 // Install jenkins.sharp as a Cake Tool #tool nuget:?package=jenkins.sharp&version=1.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
jenkins-sharp
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 | Versions 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.
-
.NETFramework 4.6.1
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7.1
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.7.2
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
.NETFramework 4.8
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
net6.0
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
net6.0-windows7.0
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
-
net8.0-windows7.0
- Newtonsoft.Json (>= 13.0.3)
- System.Net.Http (>= 4.3.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.