using AspNetCoreApi.DbContexts; using AspNetCoreApi.Middlewares; using AspNetCoreApi.Models; using AspNetCoreApi.Services; using Microsoft.AspNetCore.Identity; using Microsoft.EntityFrameworkCore; namespace AspNetCoreApi { public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); // Add EF context var connString = "server=peacecloud.synology.me;port=23306;database=Study;uid=study;password=Study1234!"; var dbServerVersion = new MySqlServerVersion(new Version(10, 3, 32)); builder.Services.AddDbContext( options => options .UseMySql(connString, dbServerVersion)); // Add Dependancy injection builder.Services.AddScoped(); // Add Identity builder.Services.AddScoped(); builder.Services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultTokenProviders(); // Add services to the container. builder.Services.AddControllers(); // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); var app = builder.Build(); // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { app.UseSwagger(); app.UseSwaggerUI(); } // Add Middlewares app.UseMiddleware(); app.UseMiddleware(); app.UseHttpsRedirection(); app.UseAuthorization(); //// Add Routing //app.UseRouting(); //app.UseEndpoints(endpoints => //{ // endpoints.MapGet("/routingtest", async context => // { // await context.Response.WriteAsync("Hello, World!"); // }); // endpoints.MapGet("/routingtest/hello/{name}", async context => // { // var name = context.Request.RouteValues["name"]; // await context.Response.WriteAsync($"Hello, {name}!"); // }); //}); app.MapControllers(); app.Run(); } } }