26 lines
775 B
C#
26 lines
775 B
C#
using Microsoft.AspNetCore.Components.Web;
|
|
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
using MudBlazor.Services;
|
|
using OpenBirchWebsite.Services;
|
|
|
|
namespace OpenBirchWebsite
|
|
{
|
|
public class Program
|
|
{
|
|
public static async Task Main(string[] args)
|
|
{
|
|
var builder = WebAssemblyHostBuilder.CreateDefault(args);
|
|
builder.RootComponents.Add<App>("#app");
|
|
builder.RootComponents.Add<HeadOutlet>("head::after");
|
|
|
|
builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
|
|
builder.Services.AddScoped<OpenBirchConsole>();
|
|
|
|
|
|
builder.Services.AddMudServices();
|
|
|
|
await builder.Build().RunAsync();
|
|
}
|
|
}
|
|
}
|