11 lines
243 B
C#
11 lines
243 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
builder.WebHost.UseUrls("http://*:5000");
|
|
var app = builder.Build();
|
|
|
|
app.UseStaticFiles();
|
|
app.UseDefaultFiles();
|
|
|
|
app.MapGet("/", () => Results.Redirect("/home.html"));
|
|
|
|
app.Run();
|