Koa.AspNetCore.Swashbuckle 0.0.10

Additional Details

Development cancelled.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Koa.AspNetCore.Swashbuckle --version 0.0.10
NuGet\Install-Package Koa.AspNetCore.Swashbuckle -Version 0.0.10
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="Koa.AspNetCore.Swashbuckle" Version="0.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Koa.AspNetCore.Swashbuckle --version 0.0.10
#r "nuget: Koa.AspNetCore.Swashbuckle, 0.0.10"
#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 Koa.AspNetCore.Swashbuckle as a Cake Addin
#addin nuget:?package=Koa.AspNetCore.Swashbuckle&version=0.0.10

// Install Koa.AspNetCore.Swashbuckle as a Cake Tool
#tool nuget:?package=Koa.AspNetCore.Swashbuckle&version=0.0.10

About

Koa.AspNetCore.Swashbuckle is a part of Koa project and Swashbuckle.AspNetCore. This is not a big library. Add and use it! If you want, you can customize it.

In short, if you do not want to deal with the configuration, add and use it.

Getting Started

  1. Install the standard Nuget package into your ASP.NET Core application.
     Package Manager : Install-Package Koa.AspNetCore.Swashbuckle
     CLI : dotnet add package Koa.AspNetCore.Swashbuckle
    
  2. In the ConfigureServices method of Startup.cs, register the Swagger generator, defining one or more Swagger documents.
     using Koa.AspNetCore.Swashbuckle;
    
     public void ConfigureServices(IServiceCollection services)
     { 
         services.AddKoaSwagger(Assembly.GetExecutingAssembly());
         services.AddMvc();
     }
    
     public void Configure(IApplicationBuilder app, IHostingEnvironment env)
     { 
         app.UseKoaSwagger(Assembly.GetExecutingAssembly());
         app.UseMvc();
     }
    
    
  3. In the Build tab of the Project Properties Output > XML documentation file should be as default directory: Configuration: Active (Debug) bin\Debug\netcoreapp2.2\PROJECT_NAME.xml Configuration: Active (Release) bin\Release\netcoreapp2.2\PROJECT_NAME.xml

References and More

You can check it the Swashbuckle.AspNetCore more information.

NOTE: Koa project is not ready for open source now. It will be shared on Github when it feels ready.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
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

Koa.AspNetCore.Swashbuckle is a part of Koa project.