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>();
|
|||
|
}
|
|||
|
}
|