ReservoirDevs.Swashbuckle.AspNetCore.Cli
1.2.0
dotnet tool install --global ReservoirDevs.Swashbuckle.AspNetCore.Cli --version 1.2.0
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local ReservoirDevs.Swashbuckle.AspNetCore.Cli --version 1.2.0
#tool dotnet:?package=ReservoirDevs.Swashbuckle.AspNetCore.Cli&version=1.2.0
nuke :add-package ReservoirDevs.Swashbuckle.AspNetCore.Cli --version 1.2.0
ReservoirDevs.Swashbuckle.AspNetCore
Based on the excellent work at the Swashbuckle.AspNetCore, this is a modified version of their CLI tool that:
- Loads any appsettings from the same location as the target DLL
- Can generate the JSON and YAML outputs simultaneously
- Can extract all API versions and generate output for each version in a single call
This was forked and updated primarily so that I didn't need to know what versions to use beforehand, and just make use of IApiVersionDescriptionProvider instead.
Installation
Global
Install the tool from NuGet.
dotnet tool install --global ReservoirDevs.Swashbuckle.AspNetCore.Cli
Local
First, create a manifest.
dotnet tool manifest
Then install the tool
dotnet tool install ReservoirDevs.Swashbuckle.AspNetCore.Cli
Usage
I've replaced all the optional switches and DLL arguments with a single argument which is the absolute location of a configuration file.
The configuration file takes the following structure:
{
"Assembly": "<<REQUIRED: absolute location of the DLL>>",
"OutputJson": true,
"OutputYaml": false,
"SerializeAsV2": false,
"BasePath": "<<OPTIONAL: a specific basePath to include in the Swagger output>>",
"Host": "<<OPTIONAL: a specific host to include in the Swagger output>>",
"Output": "<<OPTIONAL: absolute path of the directory to emit the files>>",
"SwaggerDoc": "<<OPTIONAL: name of the swagger doc you want to retrieve, as configured in your startup class>>"
}
The booleans will default to false.
If SwaggerDoc is null, empty or whitespace, then all available versions from IApiVersionDescriptionProvider will be outputted.
Files are outputted as version.format, e.g. v1's JSON will be output as v1.json, YAML, v1.yaml in the directory specified in the Output property, or output to stream if the Output property is not set.
You then run the tool
dotnet tool run reservoir-devs-swagger tofile <<absolute path to configuration file>>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 | netcoreapp3.1 is compatible. |
This package has no dependencies.