generated from wenjy/SlnMesnac
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.
79 lines
2.2 KiB
C#
79 lines
2.2 KiB
C#
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using SlnMesnac.Config;
|
|
using SlnMesnac.Serilog;
|
|
using System;
|
|
using Autofac;
|
|
using Microsoft.Extensions.Configuration;
|
|
using SlnMesnac.Ioc;
|
|
using SlnMesnac.Extensions;
|
|
using SlnMesnac.TouchSocket;
|
|
|
|
namespace SlnMesnac.WPF
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class Startup
|
|
{
|
|
/// <summary>
|
|
/// This method gets called by the runtime. Use this method to add services to the container.
|
|
/// </summary>
|
|
/// <param name="services"></param>
|
|
[Obsolete]
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddControllers();
|
|
services.AddMemoryCache();
|
|
//注册AppConfig
|
|
services.AddSingleton<AppConfig>(provider =>
|
|
{
|
|
var configuration = provider.GetService<IConfiguration>();
|
|
return configuration.GetSection("AppConfig").Get<AppConfig>();
|
|
|
|
});
|
|
|
|
//注册ORM
|
|
services.AddSqlSugarSetup();
|
|
}
|
|
|
|
/// <summary>
|
|
/// AutoFac自动注入
|
|
/// </summary>
|
|
/// <param name="builder"></param>
|
|
public void ConfigureContainer(ContainerBuilder builder)
|
|
{
|
|
DependencyConfigurator.Configure(builder);
|
|
}
|
|
|
|
/// <summary>
|
|
/// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
/// </summary>
|
|
/// <param name="app"></param>
|
|
/// <param name="env"></param>
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
{
|
|
if (env.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
|
|
//启用Serilog中间件
|
|
app.UseSerilogExtensions();
|
|
|
|
app.UseTouchSocketExtensions();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
});
|
|
|
|
}
|
|
}
|
|
} |