ef583813eb
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
17 lines
429 B
C#
17 lines
429 B
C#
using Microsoft.AspNetCore.Blazor.Hosting;
|
|
|
|
namespace Newtonsoft
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
CreateHostBuilder(args).Build().Run();
|
|
}
|
|
|
|
public static IWebAssemblyHostBuilder CreateHostBuilder(string[] args) =>
|
|
BlazorWebAssemblyHost.CreateDefaultBuilder()
|
|
.UseBlazorStartup<Startup>();
|
|
}
|
|
}
|