using AspNetCoreApi.Middlewares; namespace AspNetCoreApi { public class Program { public static void Main(string[] args) { var builder = WebApplication.CreateBuilder(args); // 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(); 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(); } } }