Inicio.AspNetCore.Versioning.Swagger 5.0.0

dotnet add package Inicio.AspNetCore.Versioning.Swagger --version 5.0.0
NuGet\Install-Package Inicio.AspNetCore.Versioning.Swagger -Version 5.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Inicio.AspNetCore.Versioning.Swagger" Version="5.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Inicio.AspNetCore.Versioning.Swagger --version 5.0.0
#r "nuget: Inicio.AspNetCore.Versioning.Swagger, 5.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Inicio.AspNetCore.Versioning.Swagger as a Cake Addin
#addin nuget:?package=Inicio.AspNetCore.Versioning.Swagger&version=5.0.0

// Install Inicio.AspNetCore.Versioning.Swagger as a Cake Tool
#tool nuget:?package=Inicio.AspNetCore.Versioning.Swagger&version=5.0.0

Adds Swagger support to Inicio.AspNetCore.Versioning using Swashbuckle.AspNetCore.

Getting Started

  1. Reference Inicio.AspNetCore.Versioning.Swagger.

  2. Register the SwaggerGen service in Startup.cs, specifying the supported API versions.

    using Inicio.AspNetCore.Versioning.Swagger;
    
    public void ConfigureServices(IServiceCollection services)
    {
       ...
       services.AddVersioning();
       services.AddVersionedSwaggerGen(new [] {1, 2});
    }
    
  3. Add the middleware to expose the generated Swagger as JSON endpoints.

    public void Configure(IApplicationBuilder app, IHostingEnvironment env)
    {
       ...
       app.UseSwagger();
    }
    

    The generated Swagger JSON can be viewed at "/swagger/v1/swagger.json".

  4. Optionally, add the middleware to enable swagger-ui.

    app.UseVersionedSwaggerUI();
    

    The interactive API docs can be viewed at "/swagger".

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

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
5.0.0 5,634 7/29/2021
3.1.1 1,082 4/13/2020
3.1.0 484 4/8/2020
3.0.0-rc1 585 11/21/2019
1.1.0 571 8/12/2019
1.0.0 900 11/16/2018