Ramone 2.0.0

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

// Install Ramone as a Cake Tool
#tool nuget:?package=Ramone&version=2.0.0                

Ramone is a C# library that simplifies access to HTTP based Web APIs and REST services. It has a strong focus on REST and implements elements of the Uniform Interface as first class citizens of the API.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  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 (4)

Showing the top 4 NuGet packages that depend on Ramone:

Package Downloads
Ramone.MediaTypes.Html

This package adds HTML reader support to Ramone.

Ramone.OAuth2

This package adds OAuth2 support to Ramone.

GitHubOAuth2Client-Redux

Provides an OAuth2 Client for authenticating with GitHub. Hooks into ASP.NET MVC 4 via DotNetOpenAuth. A Fork of GitHubOAuth2Client by jbubriski that adds additional features.

Ramone.MediaTypes.Atom

This package adds Atom feed (SyndicationFeed) support to Ramone.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Ramone:

Repository Stars
JornWildt/Mason
Documentation and examples for the Mason media type
Version Downloads Last updated
5.0.0 404 3/21/2024
4.1.5 1,178 11/5/2021
4.1.4 344 11/5/2021
4.1.3 607 6/11/2021
4.1.2 857 6/9/2021
4.1.1 375 6/9/2021
4.1.0 570 6/8/2021
4.0.0 832 5/27/2021
3.3.0 422 5/28/2021
3.2.2 1,474 8/6/2020
3.2.1.1 757 12/2/2019
3.2.1 942 12/2/2019
3.2.0 762 8/14/2019
3.1.2 1,361 8/23/2018
3.1.1 835 8/23/2018
3.1.0 1,029 5/7/2018
2.0.0 3,705 11/3/2014
1.3.1.79 1,320 1/25/2014
1.3.0.78 1,157 1/21/2014
1.3.0.77 1,257 10/3/2013
1.2.56 1,386 6/5/2013
1.1.0.47 1,287 4/12/2013
1.0.0.35 1,344 3/25/2013
1.0.0 1,247 3/25/2013

Version 2.0.0.00
----------------
This release contains a few breaking changes:

- Ramone now uses NuGet to manage dependencies instead of merging them into the final assembly (Ramone.dll).
- There is no longer a Ramone.Core.dll as this has been replaced with Ramone.dll.
- For various reasons Ramone now uses JSON.NET instead of JSONFX for JSON serializations.

Complete changelist:

* Using JSON.NET instead of JSONFX for JSON (de)serialization.
* Using JOSE JWT for JWT generation instead of implementing them internally (GitHub issue #24).
* Now possible to specify target filename for file uploads (GitHub issue #11)
* Change JSON patch identifier to application/json-patch+json (GitHub issue #8)
* Make Session member public on Request object (GitHub issue #7)
* Do not include client_id in OAuth2 access token request when using HTTP Basic Auth (GitHub issue #14)
* Add support for Subject in OAuth2 authorization (GitHub issue #25)
* Enable anonymous sessions (GitHub issue #13)
* Make it possible to call BasicAuthentication(...) on Session more than once (GitHub issue #16)
* Add default codec for byte arrays (GitHub issue #15)