RESTly 0.7.0

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

// Install RESTly as a Cake Tool
#tool nuget:?package=RESTly&version=0.7.0

RESTly

A (experimental, WIP) C# source generator for generating REST clients out of OpenApi specifications. Currently, supports .NET 8 SDK. Generated code can target as low as netstandard2.0, but with additional polyfills needed.

Getting Started

  • Add NuGet package RESTly to your project
  • Add a OpenApi specification as AdditionalFiles to your project
  • Add assembly attribute RestlyClient into your code with the name of the OpenApi specification file and the name of the api client to generate
  • The generated API client is located in the Restly namespace

Native AOT

This source generator generates AOT compatible code from version 0.7 onwards. For using AOT there is the need to add a client library project additionally to the application itself. In the application project the JSON serialization context for the generated API models must be defined. The split into projects is necessary as RESTly and JSON serialization context need source generators and those can not be chained.

There are no supported framework assets in this 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
0.7.0 67 6/23/2024
0.6.0 91 5/26/2024
0.5.0 73 5/16/2024
0.4.0 61 5/2/2024
0.3.0 134 3/27/2024
0.2.0 132 3/10/2024
0.1.0 100 2/25/2024