RestAPI-JIRA-Lib 2.2.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package RestAPI-JIRA-Lib --version 2.2.3
NuGet\Install-Package RestAPI-JIRA-Lib -Version 2.2.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RestAPI-JIRA-Lib" Version="2.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RestAPI-JIRA-Lib --version 2.2.3
#r "nuget: RestAPI-JIRA-Lib, 2.2.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RestAPI-JIRA-Lib as a Cake Addin
#addin nuget:?package=RestAPI-JIRA-Lib&version=2.2.3

// Install RestAPI-JIRA-Lib as a Cake Tool
#tool nuget:?package=RestAPI-JIRA-Lib&version=2.2.3

routines (methods) in a DLL library, to be used in C# code.
routines using JIRA REST API  to get or post  details on JIRA server  & groups, users, or Issues . results are printed on console and/or  writen in json formated files and/or plain text formated files,  and for some, in  Excel files.

Doc at : https://github.com/guihen01/RestApi-JIRA-Lib/blob/main/README.md

Rest API from Jira Server platform REST API reference) :
https://docs.atlassian.com/software/jira/docs/api/REST/8.13.2

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on RestAPI-JIRA-Lib:

Package Downloads
JIRA.GetAll.IssuesInPj

method (routine) : GetAllIssuesPj() in the library JIRA.GetAll.IssuesInPj.dll to be used with C# code Doc at : https://github.com/guihen01/GetAllIssuesPj/blob/main/README.md GetAllIssuesPj(string username, string password, string urlbase, string projectname, int Writeconsole) execute a GET http request on a Jira server with Rest API, to get all issues from a JIRA project. it uses the REST API end point : /rest/api/2/search?jql=project=" + projectname. Extract all issues from the project and parse them in a json file (Json formated) & in a text formated file & Write results to an Excel file Rest API from Jira Server platform REST API reference) : https://docs.atlassian.com/software/jira/docs/api/REST/8.13.2

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.6 771 3/22/2021
2.2.5 600 3/13/2021
2.2.4 669 2/22/2021
2.2.3 618 2/22/2021
2.2.2 603 2/13/2021
2.1.9 677 2/6/2021
2.1.8 757 2/4/2021
2.1.7 733 1/31/2021
2.1.6 649 1/30/2021
2.1.5 601 1/29/2021
2.1.4 634 1/29/2021
2.1.2 608 1/26/2021
2.1.1 632 1/26/2021
2.0.0 696 1/23/2021
1.4.1 645 1/21/2021
1.4.0 613 1/21/2021
1.3.0 699 1/19/2021
1.2.0 647 1/18/2021
1.1.0 649 1/17/2021
1.0.0 721 1/17/2021

new method : GetUnresolvedIssue() . This method allows to get all non resolved issues from a JIRA project. It makes a POST rest api request to a jira server . May writes results to console &  writes to files & Excel files located in the current directory .  
Full doc for this method at : https://github.com/guihen01/Jira-Rest-API/blob/main/README.md