SdkGenerator 1.3.4

dotnet tool install --global SdkGenerator --version 1.3.4                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local SdkGenerator --version 1.3.4                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=SdkGenerator&version=1.3.4                
nuke :add-package SdkGenerator --version 1.3.4                

NuGet

Swashbuckle SDK Generator

This program allows you to generate a hand-optimized software development kit for different programming languages for your REST API. It can also generate documentation in Markdown or Readme formats.

Example usage of this program:

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.

  1. Install the program using NuGet
> dotnet tool install --global SdkGenerator
  1. Create a project file, then fill out all the values you want to use in it
> sdkgenerator create -p .\myapi.json
  1. 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.

Automating SDK patches

If you publish updates to your API regularly, you can use GitHub Actions to automatically check for changes to your OpenAPI / Swagger file and generate a new software development kit.

Create a GitHub action using this template:

name: Check for OpenAPI updates

on:
  schedule:
    - cron: "0 0 * * 0" # Run once per week

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: Setup .NET Core @ Latest
        uses: actions/setup-dotnet@v4
        with:
          dotnet-version: "8.0.x"

      - name: Add the SDK Generator
        run: dotnet tool install SdkGenerator --global

      - name: Generate the latest SDK
        run: SdkGenerator build -p ./sdk-config.json

      - name: Save patch notes
        id: patch-notes
        run: SdkGenerator get-patch-notes -p ./sdk-config.json

      - name: Save pull request name
        id: pr-name
        run: SdkGenerator get-release-name -p ./sdk-config.json

      - name: Create Pull Request
        id: cpr
        uses: peter-evans/create-pull-request@v6
        with:
          commit-message: ${{ steps.patch-notes.outputs }}
          title: ${{ steps.pr-name.outputs }}

Supported Languages

Language Supported Github Workflows Notes
C# Yes Automated Live
Dart In Progress No In development
Java Yes No
Python Yes No Live
Ruby In Progress No Somewhat supported
TypeScript Yes No Live

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
  • Each API has a unique summary value in the swagger file which will be used as method names for the SDK

Attribution

Puzzle icons created by Freepik - Flaticon

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.3.4 63 9/30/2024
1.3.3 94 9/13/2024
1.3.2 98 9/3/2024
1.3.1 131 8/18/2024
1.3.0 122 8/13/2024
1.2.9 109 8/13/2024
1.2.8 110 8/13/2024
1.2.7 119 8/13/2024 1.2.7 is deprecated because it has critical bugs.
1.2.6 105 7/25/2024 1.2.6 is deprecated because it has critical bugs.
1.2.5 191 3/14/2024
1.2.4 188 2/10/2024
1.2.3 207 1/29/2024
1.2.2 200 1/12/2024
1.2.1 316 10/22/2023
1.2.0 267 10/11/2023
1.1.9 245 10/9/2023
1.1.8 217 9/14/2023
1.1.7 224 9/10/2023
1.1.6 311 8/22/2023
1.1.5 261 8/22/2023
1.1.4 261 8/22/2023
1.1.3 273 8/22/2023
1.1.2 180 8/22/2023
1.1.2-beta 184 8/22/2023
1.1.1 167 8/19/2023
1.1.0 144 8/18/2023
1.0.0 192 7/28/2023

# 1.3.4
     September 30, 2024

     * Updated C# / DotNet client generation to permit external HttpClient objects