20 lines
866 B
C#
20 lines
866 B
C#
using ChessCubing.App;
|
|
using ChessCubing.App.Services;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
using Microsoft.AspNetCore.Components.Authorization;
|
|
|
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
|
builder.RootComponents.Add<App>("#app");
|
|
builder.RootComponents.Add<HeadOutlet>("head::after");
|
|
|
|
builder.Services.AddScoped(_ => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
|
builder.Services.AddAuthorizationCore();
|
|
builder.Services.AddScoped<AppAuthenticationStateProvider>();
|
|
builder.Services.AddScoped<AuthenticationStateProvider>(sp => sp.GetRequiredService<AppAuthenticationStateProvider>());
|
|
builder.Services.AddScoped<BrowserBridge>();
|
|
builder.Services.AddScoped<UserSession>();
|
|
builder.Services.AddScoped<MatchStore>();
|
|
|
|
await builder.Build().RunAsync();
|