Skip to content

GerritApiDotNet/Gerrit.Api.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gerrit.Api.Net

Build Status

Installation

NuGet:

Install-Package Gerrit.Api

Examples

var gerritConfiguration = new GerritConfiguration("username", "password", "gerrit url");
var changesEndPoint = new ChangesEndpoint(gerritConfiguration);

foreach (var change in changesEndPoint.GetAll(new ChangeQueryParameters {NumberOfResults = 10}, ChangeOptionalParameters.Empty))
{
    Console.WriteLine(change.Subject);
}

About

.Net wrapper over Gerrit REST API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages