initial commit
This commit is contained in:
38
YatzyGame/Program.cs
Normal file
38
YatzyGame/Program.cs
Normal 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();
|
||||
Reference in New Issue
Block a user