You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.1 KiB
C#

10 months ago
using Autofac;
using Autofac.Extensions.DependencyInjection;
using DS.Module.AutofacModule;
using DS.Module.Core;
using DS.Module.Core.Extensions;
using DS.Module.Core.ServiceExtensions;
using DS.Module.Jwt;
using DS.Module.SqlSugar;
using DS.Module.Swagger;
using DS.Module.UserModule;
using DS.WMS.AdminApi;
using NLog.Web;
12 months ago
var builder = WebApplication.CreateBuilder(args);
10 months ago
var environment = builder.Environment.EnvironmentName;
//注册配置
builder.Configuration
.AddJsonFile(path: "appsettings.json", optional: false, reloadOnChange: true)
.Build();
builder.Configuration.AddEnvironmentVariables();
builder.Logging.AddNLog("nlog.config");
12 months ago
// Add services to the container.
10 months ago
//Autofac注入
builder.Host
.UseServiceProviderFactory(new AutofacServiceProviderFactory())
.ConfigureContainer<ContainerBuilder>(builder => { builder.RegisterModule(new AutofacModuleRegister()); });
builder.Services.AddAppWebInstal();
builder.Services.AddCorsInstall();
10 months ago
builder.Services.AddUserModuleInstall(); //用户服务
10 months ago
builder.Services.AddSqlsugarInstall();
builder.Services.AddSwaggerInstall();
builder.Services.AddJwtInstall();
10 months ago
builder.Services.AddSaasDbInstall();//分库服务
12 months ago
var app = builder.Build();
// Configure the HTTP request pipeline.
10 months ago
// if (app.Environment.IsDevelopment())
// {
// app.UseSwagger();
// app.UseSwaggerUI();
// }
//swagger
// app.UseSwagger();
var documentName = AppSetting.app(new string[] { "SwaggerDoc", "ContactName" });
app
.UseSwagger(c => { c.RouteTemplate = "{documentName}/swagger.json"; })
.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/" + documentName + "/swagger.json",
AppSetting.app(new string[] { "SwaggerDoc", "ContactName" }));
});
//跨域
var policyName =AppSetting.app(new string[] { "Cors", "PolicyName" });
if (!policyName.IsNullOrEmpty())
12 months ago
{
10 months ago
app.UseCors(policyName); //添加跨域中间件
12 months ago
}
10 months ago
app.UseRouting();
12 months ago
10 months ago
app.UseStaticFiles();
12 months ago
10 months ago
// 先开启认证
app.UseAuthentication();
// 然后是授权中间件
app.UseAuthorization();
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
app.Run();