Project layout fix

This commit is contained in:
2026-07-15 12:48:27 -05:00
parent ef7099b75e
commit 5f2d0041e4
105 changed files with 554 additions and 479 deletions
+11
View File
@@ -0,0 +1,11 @@
using PolyComm.Client;
using Microsoft.AspNetCore.Components.Authorization;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddAuthorizationCore();
builder.Services.AddCascadingAuthenticationState();
builder.Services.AddSingleton<AuthenticationStateProvider, PersistentAuthenticationStateProvider>();
await builder.Build().RunAsync();