/backlog4net

Backlog4net is a port of Backlog4j and it also means nulab Backlog binding library for .NET.

Primary LanguageC#MIT LicenseMIT

Backlog4net

Build Status on VSTS License

Backlog4net is a port of Backlog4j.

Installation

Getting started from downloading NuGet packages.

PM> Install-Package backlog4net

Usage

using Backlog4net;
using Backlog4net.Api
using Backlog4net.Api.Option
using Backlog4net.Conf
async Task Main()
{
    var conf = new BacklogJpConfigure("space_key");
    conf.ApiKey = "api_key";
    var backlogClient = new BacklogClientFactory(conf).NewClient();
    var issue = await backlogClient.CreateIssueAsync(
        new CreateIssueParams(12345, "issue-title", 1111, IssuePriorityType.Normal)
        {
            Description = "issue-description",
        });
}

License

MIT