Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 994 Bytes

README.md

File metadata and controls

49 lines (33 loc) · 994 Bytes

What Is It

A Bugzilla client library, written in C#.

What It's Not

  • A generic JSON-RPC client (though the bits are all there, more or less).

How

Requirements

A .NET 4.0/C# 4.0 runtime/compiler. Mono 2.8.x or later will do.

Why

Why not! Bugzilla API clients are hard to come by.

Using It

using CodeRinseRepeat.Bugzilla;

var client = new BugzillaClient ("http://bugzilla.yourcompany.com/jsonrpc.cgi");
await client.LoginAsync ("username", "password");
var bug = await client.GetBugAsync (1234);

Future

  • Add more BZ API coverage.
  • Make the code better.

License

MIT.