0

I am using Atlassian .net SDK from NuGet gallery. I am able to retrieve all the issues with below code:

    var jira = Jira.CreateRestClient("https://xxxx.atlassian.net", "user name", "pwd");

    var jiraIssues = from i in jira.Issues.Queryable

                 orderby i.Created
                 select i;

    foreach (var issue in jiraIssues)
    {
        System.Console.WriteLine(issue.Key.Value + " -- " + issue.Summary);
    }

But I am not able to get all the Projects, Sprints etc. Can anybody help me on this ?

Vikas Kottari
  • 495
  • 2
  • 10
  • 24

1 Answers1

0

This one is for projects.

var projects = await jira.Projects.GetProjectsAsync();