Files
Entkube/EntKube/EntKube.Client/Program.cs
2026-04-30 09:49:00 +02:00

19 lines
499 B
C#

using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
namespace EntKube.Client
{
internal class Program
{
static async Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.Services.AddAuthorizationCore();
builder.Services.AddCascadingAuthenticationState();
builder.Services.AddAuthenticationStateDeserialization();
await builder.Build().RunAsync();
}
}
}