AutoSDK.CLI
0.24.1-dev.41
See the version list below for details.
dotnet tool install --global AutoSDK.CLI --version 0.24.1-dev.41
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local AutoSDK.CLI --version 0.24.1-dev.41
#tool dotnet:?package=AutoSDK.CLI&version=0.24.1-dev.41&prerelease
nuke :add-package AutoSDK.CLI --version 0.24.1-dev.41
AutoSDK
The goal of this project is to automate and minimize the effort of maintaining high-quality .NET SDKs generated based on the OpenAPI specification, mainly to strengthen the AI ecosystem within .NET. The code generated by this library is also actively used in dozens of our various SDKs of varying complexity levels and in the LangChain.NET project, which ensures that it is tested in various scenarios and is ready for them.
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/CLS compliance
- Tested on GitHub 220k lines OpenAPI specification
- Supports OneOf/AnyOf/AllOf/Not schemas
- Supports Enums for System.Text.Json
- Supports SSE (Server-Sent Events) through the
application/x-ndjson
content type - Efficient O(n) implementation, fully suitable for large/super large OpenAPI specifications
- Used in 10+ real SDKs and adapted to solve various problems
🚀Quick start🚀
CLI (Recommended)
You can use the CLI to generate the code.
dotnet tool install --global autosdk.cli --prerelease
rm -rf Generated
autosdk generate openapi.yaml \
--namespace Namespace \
--clientClassName YourApi \
--targetFramework net8.0 \
--output Generated
It will generate the code in the "Generated" subdirectory.
It also will include polyfills for .Net Framework/.Net Standard TargetFrameworks.
Source generator
- Install the package
dotnet add package AutoSDK.SourceGenerators
- Add the following optional settings to your csproj file to customize generation. You can check all settings here:
<ItemGroup Label="AutoSDK">
<AdditionalFiles Include="$(MSBuildThisFileDirectory)../../../docs/openapi.yaml" />
</ItemGroup>
<PropertyGroup Label="AutoSDK">
<AutoSDK_Namespace>Ollama</AutoSDK_Namespace>
<AutoSDK_ClassName>OllamaApi</AutoSDK_ClassName>
<AutoSDK_GenerateSdk>false</AutoSDK_GenerateSdk>
<AutoSDK_GenerateModels>true</AutoSDK_GenerateModels>
<AutoSDK_GenerateMethods>true</AutoSDK_GenerateMethods>
<AutoSDK_GenerateConstructors>true</AutoSDK_GenerateConstructors>
<AutoSDK_IncludeOperationIds>getPet;deletePet</AutoSDK_IncludeOperationIds>
<AutoSDK_ExcludeOperationIds>getPet;deletePet</AutoSDK_ExcludeOperationIds>
<AutoSDK_IncludeModels>Pet;Model</AutoSDK_IncludeModels>
<AutoSDK_ExcludeModels>Pet;Model</AutoSDK_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:
Trimming support
CLI
CLI generates Trimming/NativeAOT compatible code by default.
Source generator
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="AutoSDK">
<AutoSDK_GenerateSdk>false</AutoSDK_GenerateSdk>
<AutoSDK_GenerateModels>true</AutoSDK_GenerateModels>
<AutoSDK_GenerateJsonSerializerContextTypes>true</AutoSDK_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(AutoSDKTrimmableSupport))]
internal sealed partial class SourceGenerationContext : JsonSerializerContext;
- Add the following settings to your main csproj file:
<PropertyGroup Label="AutoSDK">
<AutoSDK_GenerateSdk>false</AutoSDK_GenerateSdk>
<AutoSDK_GenerateMethods>true</AutoSDK_GenerateMethods>
<AutoSDK_GenerateConstructors>true</AutoSDK_GenerateConstructors>
<AutoSDK_JsonSerializerContext>Namespace.SourceGenerationContext</AutoSDK_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 | 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. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
0.27.1-dev.35 | 618 | 11/14/2024 |
0.27.1-dev.33 | 153 | 11/13/2024 |
0.27.1-dev.32 | 56 | 11/13/2024 |
0.27.1-dev.30 | 44 | 11/13/2024 |
0.27.1-dev.26 | 67 | 11/13/2024 |
0.27.1-dev.25 | 48 | 11/13/2024 |
0.27.1-dev.22 | 280 | 11/12/2024 |
0.27.1-dev.21 | 28 | 11/12/2024 |
0.27.1-dev.20 | 32 | 11/12/2024 |
0.27.1-dev.9 | 1,534 | 11/6/2024 |
0.27.1-dev.3 | 1,068 | 11/2/2024 |
0.27.1-dev.2 | 70 | 11/2/2024 |
0.27.0 | 915 | 10/30/2024 |
0.26.1-dev.73 | 1,212 | 10/26/2024 |
0.26.1-dev.70 | 303 | 10/24/2024 |
0.26.1-dev.68 | 115 | 10/24/2024 |
0.26.1-dev.67 | 144 | 10/24/2024 |
0.26.1-dev.66 | 60 | 10/24/2024 |
0.26.1-dev.65 | 39 | 10/24/2024 |
0.26.1-dev.64 | 365 | 10/22/2024 |
0.26.1-dev.63 | 33 | 10/22/2024 |
0.26.1-dev.61 | 1,072 | 10/18/2024 |
0.26.1-dev.60 | 208 | 10/18/2024 |
0.26.1-dev.58 | 73 | 10/18/2024 |
0.26.1-dev.53 | 315 | 10/16/2024 |
0.26.1-dev.46 | 761 | 10/13/2024 |
0.26.1-dev.45 | 52 | 10/13/2024 |
0.26.1-dev.44 | 57 | 10/13/2024 |
0.26.1-dev.42 | 292 | 10/12/2024 |
0.26.1-dev.37 | 191 | 10/12/2024 |
0.26.1-dev.36 | 73 | 10/12/2024 |
0.26.1-dev.33 | 75 | 10/11/2024 |
0.26.1-dev.32 | 216 | 10/11/2024 |
0.26.1-dev.29 | 66 | 10/11/2024 |
0.26.1-dev.28 | 43 | 10/11/2024 |
0.26.1-dev.27 | 42 | 10/11/2024 |
0.26.1-dev.25 | 43 | 10/11/2024 |
0.26.1-dev.24 | 41 | 10/11/2024 |
0.26.1-dev.17 | 598 | 10/8/2024 |
0.26.1-dev.13 | 1,107 | 10/3/2024 |
0.26.1-dev.12 | 42 | 10/3/2024 |
0.26.1-dev.11 | 45 | 10/3/2024 |
0.26.1-dev.10 | 69 | 10/3/2024 |
0.26.1-dev.9 | 46 | 10/3/2024 |
0.26.1-dev.4 | 600 | 10/1/2024 |
0.26.1-dev.3 | 51 | 10/1/2024 |
0.26.1-dev.2 | 42 | 10/1/2024 |
0.26.1-dev.1 | 48 | 10/1/2024 |
0.26.0 | 129 | 10/1/2024 |
0.25.0 | 109 | 10/1/2024 |
0.24.1-dev.68 | 53 | 10/1/2024 |
0.24.1-dev.67 | 40 | 10/1/2024 |
0.24.1-dev.66 | 39 | 10/1/2024 |
0.24.1-dev.56 | 1,209 | 9/23/2024 |
0.24.1-dev.54 | 113 | 9/22/2024 |
0.24.1-dev.53 | 39 | 9/22/2024 |
0.24.1-dev.52 | 63 | 9/22/2024 |
0.24.1-dev.51 | 38 | 9/22/2024 |
0.24.1-dev.50 | 44 | 9/22/2024 |
0.24.1-dev.49 | 54 | 9/22/2024 |
0.24.1-dev.47 | 56 | 9/22/2024 |
0.24.1-dev.44 | 73 | 9/21/2024 |
0.24.1-dev.41 | 193 | 9/20/2024 |
0.24.1-dev.40 | 49 | 9/20/2024 |
0.24.1-dev.39 | 40 | 9/20/2024 |
0.24.1-dev.33 | 281 | 9/17/2024 |
0.24.1-dev.31 | 72 | 9/17/2024 |
0.24.1-dev.28 | 214 | 9/15/2024 |
0.24.1-dev.27 | 40 | 9/15/2024 |
0.24.1-dev.26 | 56 | 9/14/2024 |
0.24.1-dev.25 | 47 | 9/14/2024 |
0.24.1-dev.24 | 83 | 9/12/2024 |
0.24.1-dev.23 | 38 | 9/12/2024 |
0.24.1-dev.22 | 65 | 9/11/2024 |
0.24.1-dev.19 | 50 | 9/11/2024 |
0.24.1-dev.18 | 48 | 9/11/2024 |
0.24.1-dev.15 | 55 | 9/11/2024 |
0.24.1-dev.14 | 52 | 9/11/2024 |
0.24.1-dev.13 | 47 | 9/11/2024 |
0.24.1-dev.11 | 53 | 9/11/2024 |
0.24.1-dev.10 | 47 | 9/11/2024 |
0.24.1-dev.9 | 48 | 9/11/2024 |
0.24.1-dev.8 | 47 | 9/11/2024 |
0.24.1-dev.7 | 50 | 9/11/2024 |
0.24.1-dev.2 | 58 | 9/10/2024 |
0.24.1-dev.1 | 54 | 9/10/2024 |
0.24.0 | 108 | 9/10/2024 |
0.23.1-dev.3 | 48 | 9/10/2024 |
0.23.1-dev.2 | 48 | 9/10/2024 |
0.23.1-dev.1 | 56 | 9/9/2024 |
0.23.0 | 105 | 9/9/2024 |
0.22.6-dev.10 | 55 | 9/9/2024 |
⭐ Last 10 features:
- feat: Added AllOf'1 simplification by default. 2024-09-20
- feat: Added some support for Objects in query parameters. 2024-09-20
- feat: Added PathBuilder to simplify Path/Query building. 2024-09-19
- feat: Added ai spec-from-docs subcommand. 2024-09-17
- feat: Added interfaces. 2024-09-15
- feat: Added ability to override JsonSerializerContext. 2024-09-14
- feat: Added Summary MethodNamingConvention. 2024-09-12
- feat: Added uuid format support as System.Guid. 2024-09-10
- feat: Renamed to AutoSDK. 2024-09-09
- feat: Updated MinVer/Microsoft.OpenAPI 2024-09-07
🐞 Last 10 bug fixes:
- fix: Fixed missing xml doc for PathBuilder. 2024-09-20
- fix: Fixed issue with query object reference parameters for AssemblyAI. 2024-09-19
- fix: Now all value types which are not required will be null by default instead default(T). 2024-09-17
- fix: Removed BaseUrl from interfaces. 2024-09-15
- fix: Removed usage of AutoSDK namespace in generated code. 2024-09-14
- fix: Fixed issue with Summary naming and collisions. 2024-09-12
- fix: Fixed issue with Summary naming and collisions. 2024-09-12
- fix: Fixed some issues with Summary method name generator. 2024-09-12
- fix: Fixed settings binding in cli. 2024-09-12
- fix: Fixed HeyGen xml doc issue. 2024-09-12