redrails.devRantDotNet 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package redrails.devRantDotNet --version 1.0.1
NuGet\Install-Package redrails.devRantDotNet -Version 1.0.1
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="redrails.devRantDotNet" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add redrails.devRantDotNet --version 1.0.1
#r "nuget: redrails.devRantDotNet, 1.0.1"
#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 redrails.devRantDotNet as a Cake Addin
#addin nuget:?package=redrails.devRantDotNet&version=1.0.1

// Install redrails.devRantDotNet as a Cake Tool
#tool nuget:?package=redrails.devRantDotNet&version=1.0.1

Build status NuGet

Unofficial C# Wrapper for the devRant public API.

alternate text is missing from this package README image

devRantDotNet

This is a library written in C#.NET for access to the devRant API. It aims to provide serialization on the components received so you can easily make use of the library to build applications and other code.

Prerequisites

  • .NET Framework 4+

Installation

The easiest way to install devRantDotNet is using nuget, run the following command in the Package Manager Console

    PM> Install-Package redrails.devRantDotNet

If you want to run from source then you can clone this repository and add it as a reference in your project.

Getting started

using devRantDotNet;

namespace MyProject
{
	class MyProgram
	{
		public static void Main(string[] args)
		{
			using(var dr = new devRant())
			{
				Console.WriteLine(dr.GetUserIdAsync("px06").Result);
				Console.WriteLine(dr.GetRantsAsync().Result);
				...
			}
		}
	}
}

Most methods are available in this library with some ongoing work on improving it. All methods are Async.

Usage and Documentation

Please see the wiki: https://github.com/redrails/devRantDotNet/wiki/Documentation

Contributing

If you would like to contribute then please submit pull-requests.

Licensing

Feel free to use the library as it is open-source but please do give credit when using it.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 1,307 12/15/2017
1.0.4 1,015 12/14/2017
1.0.3 947 12/14/2017
1.0.1 1,082 3/2/2017
1.0.0 1,056 3/1/2017