redmine-net-api 0.10.0

dotnet add package redmine-net-api --version 0.10.0
NuGet\Install-Package redmine-net-api -Version 0.10.0
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="redmine-net-api" Version="0.10.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add redmine-net-api --version 0.10.0
#r "nuget: redmine-net-api, 0.10.0"
#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 redmine-net-api as a Cake Addin
#addin nuget:?package=redmine-net-api&version=0.10.0

// Install redmine-net-api as a Cake Tool
#tool nuget:?package=redmine-net-api&version=0.10.0

Free open-source .Net API for Redmine bug/task management systems.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on redmine-net-api:

Package Downloads
QuickLog

Simple and lightweight .Net log framework Core features : - Multipile log strategy including File, UI and Redmine (more strategies like email and database is in development) - Ability to define log priority by diffrent LogTypes (Info, Warning, Error, Debug) - Method extender of Exception class that simplify exception logging - Store stack trace of each log - Store caller mathod's information (caller source file path, caller method name and line number) - Ability to set own message for each log - Ability to bind mulitpile objects to each log (Objects completly serilized and stored in log) - Support standard .Net string formatting let programmer bind objects and message toghter UserInterfaceLogWriter : - Ability to pass log info to UI using configured delegate FileLogWriter features : - Ability to split logs Daily, Weekly and Monthly in File strategy RedmineLogWriter features : - Register logs as issue on Redmine - Ability to config the log priority from code that apply to Redmine's issue - Attach serialized log object to registred Redmine issue

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on redmine-net-api:

Repository Stars
apetrovskiy/STUPS
This is a store for the whole suite's source code
Version Downloads Last updated
0.10.0 10,698 9/17/2013
0.9.0 1,633 4/3/2013

Fixed:

Requested children of an issue are not stored/parsed(bas.themagician)
Requesting the TimeEntries of an issue does not parse xml correctly(bas.themagician)
Parsing Issue Categories of a project(bas.themagician)
Setting issue's fixed version(AverkievKA)
TimeEntry spent_on serialization problem(mathieu.myrandbolduc).
Creating or updating Projects, the API does not update the custom fields present in the project(mathieu.myrandbolduc).

Features:

Added watchers to issue (added in 2.3.0)
Added apikey of the user visible for admins and for yourself(added in 2.3.0)
Added status of the user, visible for admins only (added in 2.4.0)
Added GetUsers(optional filter)
 Optional filters:
  status: get only users with the given status. Default is 1 (active users)
  name: filter users on their login, firstname, lastname and mail ; if the pattern contains a space, it will also return users  whose firstname match the first word or lastname match the second word.
  group_id: get only users who are members of the given group
Added UserImpersonation