using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Props.Data; using Props.Models.User; using Props.Services.Modules; using System; namespace Props { public class Startup { public Startup(IConfiguration configuration, IWebHostEnvironment webHostEnvironment) { Configuration = configuration; environment = webHostEnvironment; } public IConfiguration Configuration { get; } private readonly IWebHostEnvironment environment; // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { if (environment.IsDevelopment()) { services.AddDbContext(options => { options.UseLazyLoadingProxies(); options.UseSqlite(Configuration.GetConnectionString("DefaultConnection")); }); services.AddDatabaseDeveloperPageExceptionFilter(); } else { services.AddDbContext(options => { options.UseLazyLoadingProxies(); options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")); }); } services.AddDefaultIdentity(options => options.SignIn.RequireConfirmedAccount = true) .AddEntityFrameworkStores(); services.AddRazorPages(); services.AddSingleton(); services.AddScoped(); services.AddScoped(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app) { if (environment.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseMigrationsEndPoint(); app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseRouting(); app.UseAuthentication(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); endpoints.MapRazorPages(); }); } } }