Created static webpages and minimal ASP.net server to run it.
This commit is contained in:
9
Program.cs
Normal file
9
Program.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
|
||||
app.UseStaticFiles();
|
||||
app.UseDefaultFiles();
|
||||
|
||||
app.MapGet("/", () => Results.Redirect("/home.html"));
|
||||
|
||||
app.Run();
|
||||
Reference in New Issue
Block a user