initial commit

This commit is contained in:
2025-08-14 08:35:04 +02:00
commit 6d40bfcf4c
96 changed files with 85096 additions and 0 deletions

38
YatzyGame/Program.cs Normal file
View File

@@ -0,0 +1,38 @@
using MyApp.WebSockets;
using YatzyGame.Components;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
// builder.Services.AddSingleton<GameController>();
builder.Services.AddSingleton<MultiplayerController>();
builder.Services.AddSingleton<MyApp.WebSockets.WebSocketManager>();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseRouting();
app.MapStaticAssets();
app.UseWebSockets();
app.UseMiddleware<WebSocketMiddleware>();
// app.MapRazorPages(); // For Identity UI pages
app.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}")
.WithStaticAssets();
app.Run();