This app has been archived

You may still get support information and download previous versions of this app. Learn more.
Last modified 2011-11-18 4 downloads By Federico Silva Armas

Support

To learn more about the app, you should:


If you are a developer, you can help fix the problem yourself by:

Description

This is not a Jira plugin, it is a library for .NET developers to interact with Atlassian applications. It includes:

  • Linq provider to query Jira server using LINQ syntax
  • Create and update issues
  • Add attachments
  • Add comments

Binary is also available as a  nuget package.

--------------------------------------------------------------------------------------
Sample:

var jira=new Jira("http://<your_jira_server>","<user>","<password>");
var issues= from issue in jira.Issues
                 where issue.Assignee == "admin" && issue.Priority == "Major"
                 orderby issue.Created
                 select issue;

For more samples, go to the project wiki.

Version history