csharp 在Startup.cs上设置招摇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 在Startup.cs上设置招摇相关的知识,希望对你有一定的参考价值。
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Info
{
Version = "v1",
Title = "Title",
Description = "Description",
TermsOfService = "For internal use only",
Contact = new Contact
{
Name = "me",
Email = "me@domain.com",
Url = "domain.com"
},
License = new License
{
Name = "Internal use only",
Url = "domain.com"
}
});
c.EnableAnnotations();
});
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMvc();
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "Trace Past Due API V1");
c.RoutePrefix = string.Empty;
});
}
以上是关于csharp 在Startup.cs上设置招摇的主要内容,如果未能解决你的问题,请参考以下文章
文件路径在startup.cs的Configure方法中写入
Core的Session基本使用
ASP .NET MVC 5 中使用的 Startup.Auth.cs 和 Startup.cs 是啥?
在 Startup.cs 中使 ConfigureServices 方法异步
在 .NET 6 项目中使用 Startup.cs
从 startup.cs 检查令牌有效性