Code Monkey home page Code Monkey logo

backlog4net's Introduction

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

backlog4net's People

Contributors

ats124 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

backlog4net's Issues

NumericCustomFieldの値をdecimal型に統一

AddNumericCustomFieldParams、UpdateNumericCustomFieldParamsのInitialValue、Min、Maxがfloat型なのでdecimal型に変更する。
NumericCustomField.Valueがdecimal型なため。

Typesafe

  • object型になっているところでlong型と分かっている箇所はlong型に変更する
  • string型とlong型の両方をとるところは共用体っぽい仕組みを入れる
  • IdAsStringは削除する

Api.Option.CustomField周りの変更

  • 日付を文字列からDateTime?に変更
  • Numeric(float)メソッド削除
  • decimalをdecimal?に
  • IList customFieldItemIdを params long[] customFieldItemIdに

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.