在我的.Net框架应用程序中,“startup.cs”(.Net Core)的等价物是什么?

问题描述 投票:3回答:1

Startup.cs有一些方法可以用来配置swagger来添加文件上传功能,现在.NET Framework中的哪个文件可以使用相同的功能?

c# asp.net-mvc swagger swagger-ui
1个回答
1
投票

正如你所说,你想在configure Swagger dot net framework所以你需要install Swashbuckle只需打开package manager并输入以下commands

Install-Package Swashbuckle -Version 5.6.0

然后查看你的App_Start文件,你会发现SwaggerConfig.cs你可以配置它

enter image description here

最低限度,你需要这条线到enable Swagger and Swagger UI

GlobalConfiguration.Configuration
  .EnableSwagger(c => c.SingleApiVersion("v1", "A title for your API"))
  .EnableSwaggerUi();

Look here for long Explanation

© www.soinside.com 2019 - 2024. All rights reserved.