NetPro.Swagger 6.0.16

dotnet add package NetPro.Swagger --version 6.0.16
NuGet\Install-Package NetPro.Swagger -Version 6.0.16
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="NetPro.Swagger" Version="6.0.16" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetPro.Swagger --version 6.0.16
#r "nuget: NetPro.Swagger, 6.0.16"
#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 NetPro.Swagger as a Cake Addin
#addin nuget:?package=NetPro.Swagger&version=6.0.16

// Install NetPro.Swagger as a Cake Tool
#tool nuget:?package=NetPro.Swagger&version=6.0.16

Swagger使用

NuGet

对swagger的封装,包含认证,默认头,默认公共query参数,文件上传

使用

appsetting.json
"SwaggerOption": {
 "Enabled": true, //默认启用
 "RoutePrefix": "swagger",
 "MaxDisplayedTags":"100"//最多显示几个Controller,不写默认100
 "ServerPrefix": "lu/", //json endpoint,用于反向代理场景使用
 "OAuth2":{
      "Server":"www.baidu.com",//开启Oauth2功能
      "Scopes": [
				{
					"Key": "d",
					"Value": "b"
				}
			]
 }
 "Description": "this is swagger for netcore",
 "Title": "Demo swagger",
 "Version": "first version",
 "TermsOfService": "netcore.com",
 "Contact": {
 	"Email": "swagger@netcore.com",
 	"Name": "swagger",
 	"Url": "swagger@netcore.com"
 },
 "License": {
 	"Name": "",
 	"Url": ""
 },
 "Headers": [ //swagger默认头参数
 	{
 	"Name": "User",
 	"Description": "用户"
 	}
 ],
 "Query": [ //swagger默认url公共参数
 	{
 	"Name": "sign",
 	"Description": "签名"
 	},
 	{
 	"Name": "timestamp",
 	"Description": "客户端时间戳"
 	}
 ]
}

启用服务
public void ConfigureServices(IServiceCollection services,IConfiguration configuration)
{
     services.AddNetProSwagger(configuration);
}

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
      app.UseNetProSwagger();
}

注意

webapi项目中不能包含Web相关组件,例如 Microsoft.VisualStudio.Web.CodeGeneration.Design 否则会导致swagger异常

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 (1)

Showing the top 1 popular GitHub repositories that depend on NetPro.Swagger:

Repository Stars
LeonKou/NetPro
🌈An enhanced version with clean architecture of asp.netcore,efficiently manage startup,Support for netcore3.1/6.0
Version Downloads Last updated
6.0.16 245 7/24/2023
6.0.15 768 7/19/2022
6.0.14 539 7/10/2022
6.0.13 567 6/15/2022
6.0.12 479 6/15/2022
6.0.11 477 6/15/2022
6.0.10 513 6/11/2022
6.0.9 508 6/8/2022
6.0.8 570 5/26/2022
6.0.8-beta.3 139 5/24/2022
6.0.8-beta.2 105 5/24/2022
6.0.7 534 5/18/2022
6.0.6 553 4/28/2022
6.0.5 562 3/30/2022
6.0.5-beta.20 108 4/27/2022
6.0.5-beta.19 111 4/25/2022
6.0.5-beta.18 113 4/22/2022
6.0.5-beta.17 129 4/16/2022
6.0.5-beta.16 188 4/8/2022
6.0.5-beta.15 114 4/8/2022
6.0.5-beta.14 124 4/7/2022
6.0.5-beta.13 121 4/7/2022
6.0.5-beta.12 118 4/6/2022
6.0.5-beta.11 148 4/6/2022
6.0.5-beta.10 134 3/31/2022
6.0.5-beta.9 130 3/26/2022
6.0.5-beta.8 142 3/22/2022
6.0.5-beta.7 120 3/21/2022
6.0.5-beta.6 133 3/14/2022
6.0.5-beta.5 136 3/2/2022
6.0.5-beta.4 133 2/22/2022
6.0.5-beta.3 127 2/18/2022
6.0.5-beta.2 115 2/18/2022
6.0.5-beta.1 129 2/16/2022
6.0.4 676 2/10/2022
6.0.3 464 2/9/2022
6.0.3-beta.9 109 2/10/2022
6.0.3-beta.7 125 1/27/2022
6.0.3-beta.6 125 1/19/2022
6.0.3-beta.5 127 1/17/2022
6.0.3-beta.4 133 1/16/2022
6.0.3-beta.3 134 1/14/2022
6.0.3-beta.2 129 1/13/2022
6.0.3-beta.1 160 1/11/2022
6.0.2 336 1/6/2022
6.0.1 996 12/3/2021
3.1.11 494 11/17/2021
3.1.10 1,140 7/29/2021
3.1.9 1,100 7/1/2021
3.1.8 1,044 12/15/2020
3.1.6 2,186 9/16/2020
3.1.5 1,129 9/8/2020