You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
-
- namespace Himp.TaskScheduling.Blazor.Host.Client;
-
- public class Program
- {
- public async static Task Main(string[] args)
- {
- var builder = WebAssemblyHostBuilder.CreateDefault(args);
-
- var application = await builder.AddApplicationAsync<TaskSchedulingBlazorHostClientModule>(options =>
- {
- options.UseAutofac();
- });
-
- var host = builder.Build();
-
- await application.InitializeApplicationAsync(host.Services);
-
- await host.RunAsync();
- }
- }
|