EasilyNET.WebCore.Swagger 3.24.914.115

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasilyNET.WebCore.Swagger --version 3.24.914.115                
NuGet\Install-Package EasilyNET.WebCore.Swagger -Version 3.24.914.115                
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="EasilyNET.WebCore.Swagger" Version="3.24.914.115" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasilyNET.WebCore.Swagger --version 3.24.914.115                
#r "nuget: EasilyNET.WebCore.Swagger, 3.24.914.115"                
#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 EasilyNET.WebCore.Swagger as a Cake Addin
#addin nuget:?package=EasilyNET.WebCore.Swagger&version=3.24.914.115

// Install EasilyNET.WebCore.Swagger as a Cake Tool
#tool nuget:?package=EasilyNET.WebCore.Swagger&version=3.24.914.115                

EasilyNET.WebCore.Swagger

将 Swagger 的扩展独立出来,避免 WebCore 的过度依赖.

  • 新增 Swagger 页面参数忽略.比如某些默认参数不需要调用者传入,并且也不希望他看见
  • 接口隐藏,或者控制器隐藏

添加默认值显示 代码示例

  • 在 Swagger 文档中给需要 Authorize 的接口添加 🔒

最新变化

  • SwaggerIgnoreAttribute由于官方已经提供了同名特性,所以这里删除相关代码.

可用特性

  • ApiGroupAttribute 对控制器进行分组.便于将特有的功能分到一个组方便管理.
  • HiddenApiAttribute 隐藏控制器或者单个接口.
  • SwaggerIgnoreAttribute 忽略接口参数或者传入实体的属性 代码示例

如何使用?

// 添加 Swagger 服务
private const string name = $"{title}-{version}";

private const string version = "v1";
private const string title = "WebApi.Test";

builder.Services.AddSwaggerGen(c =>
{
    // 配置默认的文档信息
    c.SwaggerDoc(name, new()
    {
        Title = title,
        Version = version,
        Description = "Console.WriteLine(\"🐂🍺\")"
    });
    // 这里使用EasilyNET提供的扩展配置.
    c.EasilySwaggerGenOptions(name);
    // 配置认证方式
    c.AddSecurityDefinition("Bearer", new()
    {
        Description = "JWT Authorization header using the Bearer scheme. Example: \"Authorization: Bearer {token}\"",
        Name = "Authorization",
        In = ParameterLocation.Header,
        Type = SecuritySchemeType.ApiKey,
        Scheme = "Bearer"
    });
});

...

// 注册 Swagger 中间件
app.UseSwagger().UseSwaggerUI(c =>
{
    // 配置默认文档
    c.SwaggerEndpoint($"/swagger/{name}/swagger.json", $"{title} {version}");
    // 使用EasilyNET提供的扩展配置
    c.EasilySwaggerUIOptions();
});

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.  net9.0 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
3.24.1107.140 18 11/7/2024
3.24.1107.54 21 11/7/2024
3.24.1107.34 20 11/7/2024
3.24.1105.111 37 11/5/2024
3.24.1103.31 65 11/2/2024
3.24.1103 66 11/2/2024
3.24.1031.135 64 10/31/2024
3.24.1031.112 59 10/31/2024
3.24.1031.104 59 10/31/2024
3.24.1029.142 76 10/29/2024
3.24.1025.30 75 10/24/2024
3.24.1022.142 57 10/22/2024
3.24.1018.204 124 10/18/2024
3.24.1018.175 119 10/18/2024
3.24.1018.166 119 10/18/2024
3.24.1018.93 124 10/18/2024
3.24.1017.42 74 10/16/2024
3.24.1016.161 73 10/16/2024
3.24.1015.231 79 10/15/2024
3.24.1015.14 71 10/14/2024
3.24.1012.114 75 10/12/2024
3.24.1009.115 78 10/9/2024
3.24.1008.160 66 10/8/2024
3.24.1008.133 72 10/8/2024
3.24.1007.185 65 10/7/2024
3.24.1003.33 77 10/2/2024
3.24.1002.162 71 10/2/2024
3.24.929.143 71 9/29/2024
3.24.929.141 93 9/29/2024
3.24.929.131 74 9/29/2024
3.24.929.122 76 9/29/2024
3.24.926.184 86 9/26/2024
3.24.926.182 74 9/26/2024
3.24.926.175 83 9/26/2024
3.24.924.160 73 9/24/2024
3.24.924.133 97 9/24/2024
3.24.924.124 75 9/24/2024
3.24.924.10 87 9/23/2024
3.24.924.1 73 9/23/2024
3.24.923.234 83 9/23/2024
3.24.923.232 79 9/23/2024
3.24.923.155 79 9/23/2024
3.24.919.92 89 9/19/2024
3.24.914.125 111 9/14/2024
3.24.914.115 100 9/14/2024
3.24.914.111 118 9/14/2024
3.24.911.95 99 9/11/2024
3.24.908.215 93 9/8/2024
3.24.904.200 93 9/4/2024
3.24.828.163 113 8/28/2024
3.24.820.173 115 8/20/2024
3.24.814.92 104 8/14/2024
3.24.812.115 126 8/12/2024
3.24.802.100 98 8/2/2024
3.24.801.162 77 8/1/2024
3.24.801.160 97 8/1/2024
3.24.730.164 65 7/30/2024
3.24.730.91 70 7/30/2024
3.24.724.91 69 7/24/2024
3.24.718.105 115 7/18/2024
3.24.716.95 93 7/16/2024
3.24.712.94 88 7/12/2024
3.24.710.14 98 7/9/2024
3.24.709.105 109 7/9/2024
3.24.704.94 111 7/4/2024
3.24.701.90 99 7/1/2024
3.24.628.114 101 6/28/2024
3.24.627.145 96 6/27/2024
3.24.620.160 105 6/20/2024
3.24.613.115 98 6/13/2024
3.24.612.95 87 6/12/2024
3.24.528.90 100 5/28/2024
3.24.522.84 116 5/22/2024
3.24.512.213 83 5/12/2024
3.24.508.112 105 5/8/2024
2.2024.428.71 105 4/28/2024
2.2024.427.1128 109 4/27/2024
2.2.72 124 4/14/2024
2.2.71 116 4/12/2024
2.2.8 93 4/26/2024
2.2.6 105 4/10/2024
2.2.5 125 3/26/2024
2.2.4 110 3/25/2024
2.2.3 124 3/24/2024
2.2.2 150 3/21/2024
2.2.1 126 3/20/2024
2.2.0 130 3/13/2024
2.1.9 143 2/21/2024
2.1.8 103 2/18/2024
2.1.7 114 2/16/2024
2.1.6 119 2/14/2024
2.1.5 110 2/14/2024
2.1.4 137 2/9/2024
2.1.3 135 2/8/2024
2.1.2 126 2/5/2024
2.1.1.2 197 12/26/2023
2.1.1.1 148 12/26/2023
2.1.1 147 12/25/2023
2.1.0 144 12/17/2023
2.0.11 219 12/6/2023
2.0.1 205 11/15/2023
2.0.0 153 11/14/2023
1.9.1 159 11/1/2023
1.9.0 160 10/19/2023
1.9.0-preview2 277 10/12/2023
1.9.0-preview1 142 10/12/2023
1.8.9 193 10/11/2023
1.8.8 165 10/11/2023
1.8.7-rc2 146 9/21/2023
1.8.7-rc1 150 9/12/2023
1.8.6 203 8/31/2023
1.8.5 777 8/25/2023
1.8.4 180 8/24/2023
1.8.3 202 8/23/2023
1.8.2 233 8/22/2023
1.8.1 205 8/18/2023
1.8.0 175 8/15/2023
1.7.9 202 8/11/2023
1.7.8 164 8/11/2023
1.7.7 193 8/10/2023
1.7.6 184 8/9/2023
1.7.5 230 8/9/2023
1.7.4 288 8/3/2023
1.7.3 204 8/1/2023
1.7.2 190 7/31/2023
1.7.1 162 7/27/2023
1.7.0 193 7/25/2023
1.6.9 217 7/25/2023
1.6.8 188 7/24/2023
1.6.7 211 7/20/2023
1.6.6 192 7/19/2023
1.6.5 168 7/19/2023
1.6.4 184 7/17/2023
1.6.3 173 7/17/2023
1.6.2 247 7/12/2023
1.6.1 251 6/30/2023
1.6.0 173 6/26/2023
1.5.9 211 6/22/2023
1.5.8 233 6/15/2023
1.5.7.1 218 6/14/2023
1.5.7 227 6/14/2023
1.5.6.2 229 6/7/2023
1.5.6.1 199 6/7/2023
1.5.6 199 6/7/2023
1.5.5.2 250 5/26/2023
1.5.5.1 215 5/26/2023
1.5.5 220 5/26/2023
1.5.4.4 192 5/25/2023
1.5.4.3 215 5/23/2023
1.5.4.2 285 5/17/2023
1.5.4.1 182 5/16/2023
1.5.4 276 5/11/2023
1.5.3 193 5/11/2023
1.5.2 220 5/10/2023
1.5.1 184 5/10/2023
1.5.0 233 5/6/2023
1.4.0 206 5/5/2023
1.3.9 256 4/23/2023