SdkGenerator 1.1.3
See the version list below for details.
dotnet add package SdkGenerator --version 1.1.3
NuGet\Install-Package SdkGenerator -Version 1.1.3
<PackageReference Include="SdkGenerator" Version="1.1.3" />
<PackageVersion Include="SdkGenerator" Version="1.1.3" />
<PackageReference Include="SdkGenerator" />
paket add SdkGenerator --version 1.1.3
#r "nuget: SdkGenerator, 1.1.3"
#addin nuget:?package=SdkGenerator&version=1.1.3
#tool nuget:?package=SdkGenerator&version=1.1.3
Swashbuckle SDK Generator
This program allows you to generate a hand-optimized software development kit for different programming languages for your REST API.
This opinionated software makes assumptions about your API and attempts to create a SDK that matches good practices in each programming language. The OpenAPI / Swagger spec permits lots of different ways of doing things; this tool is intended to work only with commonly seen use cases.
Using this program
Here's how to use this program.
- Install the program using NuGet
> dotnet tool install --global SdkGenerator
- Create a project file, then fill out all the values you want to use in it
> sdkgenerator create -p .\myapi.json
- Run the program and build a single language OR build all languages
> sdkgenerator build -p .\myapi.json
You can automate these steps in a Github workflow to execute this program automatically on new releases.
Supported Languages
Language | Supported | Github Workflows | Notes |
---|---|---|---|
C# | Yes | Automated | Most complete support |
Dart | In Progress | No | In development |
Java | Yes | No | |
Python | Yes | No | |
Ruby | In Progress | No | Somewhat supported |
TypeScript | Yes | No |
Supported Tools
Language | Supported | Notes |
---|---|---|
Readme | Yes | Markdown-formatted documentation can upload to Guide pages |
Workato | Partially | Somewhat supported |
OpenAPI assumptions
Examples of assumptions about OpenAPI made by this program:
- Only supports OpenAPI 3.0
- Your server supports GZIP encoding and HTTPS connection pooling
- An endpoint returns only a single data type and a single error type
- Each API has a single-word category, a four-word title, and a long remarks section that is a description
- You have a list of public environments (e.g. production, sandbox) that are documented in the SDK
- For test environments or dedicated servers, an SDK user must define a custom environment URL
- Enums are sometimes unsafe for SDK usage; all enums are converted to integers or strings
- Nobody intentionally adds HttpStatusCode to their swagger file; if it appears, ignore it.
Attribution
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- No dependencies.
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.3.11 | 188 | 1/31/2025 | |
1.3.10 | 105 | 1/14/2025 | |
1.3.9 | 154 | 12/9/2024 | |
1.3.8 | 175 | 10/30/2024 | |
1.3.7 | 154 | 10/20/2024 | |
1.3.6 | 142 | 10/18/2024 | |
1.3.5 | 128 | 10/5/2024 | |
1.3.4 | 100 | 9/30/2024 | |
1.3.3 | 122 | 9/13/2024 | |
1.3.2 | 123 | 9/3/2024 | |
1.3.1 | 152 | 8/18/2024 | |
1.3.0 | 141 | 8/13/2024 | |
1.2.9 | 130 | 8/13/2024 | |
1.2.8 | 133 | 8/13/2024 | |
1.2.7 | 141 | 8/13/2024 | |
1.2.6 | 132 | 7/25/2024 | |
1.2.5 | 205 | 3/14/2024 | |
1.2.4 | 207 | 2/10/2024 | |
1.2.3 | 222 | 1/29/2024 | |
1.2.2 | 214 | 1/12/2024 | |
1.2.1 | 330 | 10/22/2023 | |
1.2.0 | 281 | 10/11/2023 | |
1.1.9 | 258 | 10/9/2023 | |
1.1.8 | 231 | 9/14/2023 | |
1.1.7 | 238 | 9/10/2023 | |
1.1.6 | 328 | 8/22/2023 | |
1.1.5 | 276 | 8/22/2023 | |
1.1.4 | 281 | 8/22/2023 | |
1.1.3 | 286 | 8/22/2023 | |
1.1.2 | 196 | 8/22/2023 | |
1.1.2-beta | 195 | 8/22/2023 | |
1.1.1 | 183 | 8/19/2023 | |
1.1.0 | 158 | 8/18/2023 | |
1.0.0 | 209 | 7/28/2023 |
# 1.1.2
August 21, 2023
* Fixed tool deployment