OpenApiGenerator.Core
0.11.4
See the version list below for details.
dotnet add package OpenApiGenerator.Core --version 0.11.4
NuGet\Install-Package OpenApiGenerator.Core -Version 0.11.4
<PackageReference Include="OpenApiGenerator.Core" Version="0.11.4" />
paket add OpenApiGenerator.Core --version 0.11.4
#r "nuget: OpenApiGenerator.Core, 0.11.4"
// Install OpenApiGenerator.Core as a Cake Addin #addin nuget:?package=OpenApiGenerator.Core&version=0.11.4 // Install OpenApiGenerator.Core as a Cake Tool #tool nuget:?package=OpenApiGenerator.Core&version=0.11.4
OpenApiGenerator
Allows you to partially (for example, only models) or completely generate a native (without dependencies) C# client sdk according to the OpenAPI specification.
Inspired by NSwag ❤️.
🔥Features🔥
- Uses Incremental Source Generators for efficient generation and caching.
- Detects your TargetFramework and generates optimal code for it (including net6.0/net7.0/net8.0 improvements)
- Supports .Net Framework/.Net Standard
- Does not contain dependencies for modern versions of dotnet
- Only System.Text.Json dependency for .Net Framework/.Net Standard
- Any generated methods provide the ability to pass a CancellationToken
- Allows partial generation (models only) or end points filtering
- Available under MIT license for general users and most organizations
- Uses https://github.com/microsoft/OpenAPI.NET for parsing OpenAPI specification
- Supports nullable enable/trimming/native AOT compilation
- Tested on GitHub 220k lines OpenAPI specification
- Supports OneOf/AnyOf/AllOf/Not schemas
- Supports Enums for System.Text.Json
🚀Quick start🚀
- Install the package
dotnet add package OpenApiGenerator
- Add the following optional settings to your csproj file to customize generation. You can check all settings here:
<ItemGroup Label="OpenApiGenerator">
<AdditionalFiles Include="$(MSBuildThisFileDirectory)../../../docs/openapi.yaml" />
</ItemGroup>
<PropertyGroup Label="OpenApiGenerator">
<OpenApiGenerator_Namespace>Ollama</OpenApiGenerator_Namespace>
<OpenApiGenerator_ClassName>OllamaApi</OpenApiGenerator_ClassName>
<OpenApiGenerator_GenerateSdk>false</OpenApiGenerator_GenerateSdk>
<OpenApiGenerator_GenerateModels>true</OpenApiGenerator_GenerateModels>
<OpenApiGenerator_GenerateMethods>true</OpenApiGenerator_GenerateMethods>
<OpenApiGenerator_GenerateConstructors>true</OpenApiGenerator_GenerateConstructors>
<OpenApiGenerator_IncludeOperationIds>getPet;deletePet</OpenApiGenerator_IncludeOperationIds>
<OpenApiGenerator_ExcludeOperationIds>getPet;deletePet</OpenApiGenerator_ExcludeOperationIds>
<OpenApiGenerator_IncludeModels>Pet;Model</OpenApiGenerator_IncludeModels>
<OpenApiGenerator_ExcludeModels>Pet;Model</OpenApiGenerator_ExcludeModels>
</PropertyGroup>
- It's all! Now you can build your project and use the generated code. You also can use IDE to see the generated code in any moment, this is a example for Rider:
CLI
You can use the CLI to generate the code.
dotnet tool install --global openapigenerator.cli --prerelease
oag --help
oag generate openapi.yaml
It will generate the code in the "openapi" subdirectory.
Trimming support
Since there are two source generators involved, we will have to create a second project so that the generator for the JsonSerializerContext will “see” our models
- Create new project for your models. And disable methods/constructors generation:
<PropertyGroup Label="OpenApiGenerator">
<OpenApiGenerator_GenerateSdk>false</OpenApiGenerator_GenerateSdk>
<OpenApiGenerator_GenerateModels>true</OpenApiGenerator_GenerateModels>
<OpenApiGenerator_GenerateJsonSerializerContextTypes>true</OpenApiGenerator_GenerateJsonSerializerContextTypes>
</PropertyGroup>
- Reference this project in your main project.
- Add
SourceGenerationContext.cs
file to your main project with the following content:
using System.Text.Json.Serialization;
namespace Namespace;
[JsonSourceGenerationOptions(DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
[JsonSerializable(typeof(OpenApiGeneratorTrimmableSupport))]
internal sealed partial class SourceGenerationContext : JsonSerializerContext;
- Add the following settings to your main csproj file:
<PropertyGroup Label="OpenApiGenerator">
<OpenApiGenerator_GenerateSdk>false</OpenApiGenerator_GenerateSdk>
<OpenApiGenerator_GenerateMethods>true</OpenApiGenerator_GenerateMethods>
<OpenApiGenerator_GenerateConstructors>true</OpenApiGenerator_GenerateConstructors>
<OpenApiGenerator_JsonSerializerContext>Namespace.SourceGenerationContext</OpenApiGenerator_JsonSerializerContext>
</PropertyGroup>
- Add these settings to your new and main csproj file to enable trimming(or use Directory.Build.props file):
<PropertyGroup Label="Trimmable" Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
<IsAotCompatible>true</IsAotCompatible>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<IsTrimmable>true</IsTrimmable>
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
<TrimmerSingleWarn>false</TrimmerSingleWarn>
</PropertyGroup>
- It's all! Now you can build your project and use the generated code with full trimming/nativeAOT support.
📚Examples of use in real SDKs📚
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.OpenApi.Readers (>= 1.6.15)
- System.Collections.Immutable (>= 8.0.0)
-
.NETStandard 2.0
- Microsoft.OpenApi.Readers (>= 1.6.15)
- System.Collections.Immutable (>= 8.0.0)
-
net6.0
- Microsoft.OpenApi.Readers (>= 1.6.15)
- System.Collections.Immutable (>= 8.0.0)
-
net8.0
- Microsoft.OpenApi.Readers (>= 1.6.15)
- System.Collections.Immutable (>= 8.0.0)
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.22.6-dev.7 | 176 | 9/9/2024 | |
0.22.6-dev.6 | 64 | 9/9/2024 | |
0.22.6-dev.4 | 69 | 9/7/2024 | |
0.22.6-dev.2 | 60 | 9/7/2024 | |
0.22.6-dev.1 | 59 | 9/7/2024 | |
0.22.5 | 122 | 9/7/2024 | |
0.22.4 | 100 | 9/7/2024 | |
0.22.3 | 104 | 9/7/2024 | |
0.22.2 | 110 | 9/7/2024 | |
0.22.1 | 100 | 9/7/2024 | |
0.22.0 | 99 | 9/7/2024 | |
0.21.1 | 105 | 9/6/2024 | |
0.21.0 | 103 | 9/6/2024 | |
0.20.2 | 123 | 8/31/2024 | |
0.20.1 | 104 | 8/31/2024 | |
0.20.0 | 107 | 8/30/2024 | |
0.19.0 | 118 | 8/30/2024 | |
0.18.0 | 112 | 8/29/2024 | |
0.17.1 | 124 | 8/28/2024 | |
0.17.0 | 127 | 8/28/2024 | |
0.16.4-dev.7 | 60 | 8/28/2024 | |
0.16.3 | 148 | 8/24/2024 | |
0.16.2 | 134 | 8/24/2024 | |
0.16.1 | 136 | 8/23/2024 | |
0.16.0 | 148 | 8/22/2024 | |
0.15.8 | 149 | 8/22/2024 | |
0.15.7 | 139 | 8/19/2024 | |
0.15.6 | 135 | 8/18/2024 | |
0.15.5 | 129 | 8/18/2024 | |
0.15.4 | 128 | 8/15/2024 | |
0.15.3 | 132 | 8/13/2024 | |
0.15.2 | 127 | 8/13/2024 | |
0.15.1 | 127 | 8/12/2024 | |
0.15.0 | 135 | 8/11/2024 | |
0.14.3 | 73 | 8/6/2024 | |
0.14.2 | 73 | 8/5/2024 | |
0.14.1 | 81 | 8/5/2024 | |
0.14.0 | 74 | 8/5/2024 | |
0.13.11 | 121 | 7/22/2024 | |
0.13.10 | 135 | 7/21/2024 | |
0.13.9 | 111 | 7/18/2024 | |
0.13.8 | 119 | 7/15/2024 | |
0.13.7 | 113 | 7/15/2024 | |
0.13.6 | 116 | 7/14/2024 | |
0.13.5 | 108 | 7/14/2024 | |
0.13.4 | 109 | 7/13/2024 | |
0.13.3 | 112 | 7/9/2024 | |
0.13.2 | 112 | 7/8/2024 | |
0.13.1 | 118 | 7/8/2024 | |
0.13.0 | 104 | 7/8/2024 | |
0.12.2 | 123 | 7/8/2024 | |
0.12.1 | 121 | 7/6/2024 | |
0.12.0 | 116 | 7/6/2024 | |
0.11.11 | 119 | 7/6/2024 | |
0.11.10 | 118 | 7/6/2024 | |
0.11.9 | 133 | 6/30/2024 | |
0.11.8 | 135 | 6/30/2024 | |
0.11.7 | 126 | 6/30/2024 | |
0.11.6 | 121 | 6/29/2024 | |
0.11.4 | 143 | 6/27/2024 | |
0.11.3 | 130 | 6/27/2024 | |
0.11.1 | 116 | 6/20/2024 | |
0.11.0 | 132 | 6/16/2024 | |
0.10.8 | 125 | 6/15/2024 | |
0.10.7 | 129 | 6/15/2024 | |
0.10.6 | 118 | 6/15/2024 | |
0.10.4 | 114 | 6/13/2024 | |
0.10.2 | 112 | 6/13/2024 | |
0.10.1 | 107 | 6/13/2024 | |
0.10.0 | 115 | 6/13/2024 | |
0.9.12 | 121 | 6/6/2024 | |
0.9.11 | 115 | 6/6/2024 | |
0.9.10 | 121 | 6/5/2024 | |
0.9.9 | 115 | 6/5/2024 | |
0.9.8 | 119 | 6/4/2024 | |
0.9.7 | 123 | 6/1/2024 | |
0.9.5 | 133 | 5/31/2024 | |
0.9.4 | 125 | 5/31/2024 | |
0.9.3 | 119 | 5/31/2024 | |
0.9.1 | 127 | 5/30/2024 | |
0.9.0 | 123 | 5/30/2024 | |
0.8.8 | 123 | 5/28/2024 | |
0.8.6 | 107 | 5/27/2024 | |
0.8.5 | 117 | 5/27/2024 | |
0.8.4 | 129 | 5/27/2024 | |
0.8.3 | 121 | 5/27/2024 | |
0.8.1 | 133 | 5/25/2024 | |
0.8.0 | 122 | 5/25/2024 | |
0.7.2 | 134 | 5/23/2024 | |
0.7.1 | 130 | 5/22/2024 | |
0.7.0 | 124 | 5/22/2024 | |
0.6.9 | 123 | 5/22/2024 | |
0.6.8 | 127 | 5/21/2024 | |
0.6.7 | 123 | 5/21/2024 | |
0.6.6 | 124 | 5/19/2024 | |
0.6.5 | 121 | 5/19/2024 | |
0.6.4 | 119 | 5/19/2024 | |
0.6.3 | 125 | 5/19/2024 | |
0.6.2 | 119 | 5/19/2024 | |
0.6.1 | 130 | 5/19/2024 | |
0.6.0 | 123 | 5/19/2024 | |
0.5.0 | 136 | 5/19/2024 | |
0.4.0 | 125 | 5/19/2024 | |
0.3.2 | 130 | 5/13/2024 | |
0.3.1 | 123 | 5/13/2024 | |
0.3.0 | 128 | 5/13/2024 | |
0.2.0 | 138 | 5/11/2024 | |
0.1.5 | 131 | 5/10/2024 | |
0.1.4 | 125 | 5/10/2024 | |
0.1.3 | 155 | 4/5/2024 |
⭐ Last 10 features:
- fix: Fixed GroupByTags feature if tags for endpoint was missing. 2024-06-27
- feat: Updated Ollama spec. 2024-06-27
- feat: Added support for Basic Authorization. 2024-06-24
- feat: Added SchemaContext. 2024-06-23
- feat: Added ability to see error json for non 200 responses. 2024-06-20
- feat: Added net8 cancellationToken for ReadAsync calls. 2024-06-20
- feat: Added smart names for Named AnyOf with all referenced properties. 2024-06-16
- feat: Added Trimming support for CLI generated code. 2024-06-16
- feat: Added FromCli setting. 2024-06-16
- feat: Updated OpenAI spec and fixed some bugs. 2024-06-16
🐞 Last 10 bug fixes:
- fix: Fixed issue with base url without path. 2024-06-27
- fix: Fixed invalid generation of authorizations for models only. 2024-06-27
- fix: Fixed GroupByTags feature if tags for endpoint was missing. 2024-06-27
- fix: Fixed nullable warnings. 2024-06-27
- fix: Fixed some nullability warnings. 2024-06-23
- fix: Fixed some nullability issues. 2024-06-23
- fix: Added some missing JsonConverters to settings. 2024-06-20
- fix: Moved request json to separate variable for debug purposes. 2024-06-20
- fix: AnyOf/OneOf will be nullable if not required. 2024-06-20
- fix: Fixed OneOf Validate method. 2024-06-20