You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.SAAS.Manage.Core;
- using Furion;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
-
- namespace BPA.SAAS.Manage.Web.Core
- {
- public class Startup : AppStartup
- {
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddConsoleFormatter();
- services.AddJwt<JwtHandler>();
-
- services.AddCorsAccessor();
- services.AddSqlsugarSetup(App.Configuration);
- services.AddControllers()
- .AddInjectWithUnifyResult();
- }
-
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- app.UseHttpsRedirection();
-
- app.UseRouting();
-
- app.UseCorsAccessor();
-
- app.UseAuthentication();
- app.UseAuthorization();
-
- app.UseInject(string.Empty);
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
- }
- }
- }
|