Atlassian Jira .NET SDK

Ross Finnimore January 30, 2020

Hi All, I downloaded the Atlassian.jira assembly into my visual studio 2012 project using the package manager console.  Checked using the Manage NuGet Packages in visual studio and can see it under recent packages indicating that it is Atlassian.SDK version 2.2.0.  When I right click on References in my project I can see the Atlassian.jira assembly.  I include  the using Atlassian; directive in my code.  

When I try to create a new Jira connection in my code 

Jira jiraConn = new Jira("http://yourjiraurl.com/", jUserID, jPassword);

it indicates that it cannot find the type Jira

Error 1 The type or namespace name 'Jira' could not be found (are you missing a using directive or an assembly reference?) 

Can someone show me what I'm doing wrong and how to fix it?

Thanks tonnes for any help, Roscoe

1 answer

1 accepted

0 votes
Answer accepted
Ross Finnimore January 30, 2020

Please ignore the question.  I was specifying the directive as 

Using Atlassian;

when it needed to be 

Using Atlassian.jira;

I would delete the question but can't see how to do it, Thanks, Roscoe

Suggest an answer

Log in or Sign up to answer