Added rudimentary default view

This commit is contained in:
2025-12-13 20:58:50 +01:00
parent 70b6885a2e
commit 78f52faf46
69 changed files with 74634 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
builder.Services.AddControllersWithViews();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
@@ -80,5 +80,6 @@ if (UseMiddleware == true && !IsDevelopment)
app.UseAuthorization();
app.MapControllers();
app.UseStaticFiles();
app.Run();