The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Atlassian Jira .NET SDK

Ross Finnimore
Contributor
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Ross Finnimore
Contributor
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