Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/illinker-test-assets.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Program.cs')
-rw-r--r--wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Program.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Program.cs b/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Program.cs
new file mode 100644
index 0000000..f498eb0
--- /dev/null
+++ b/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Program.cs
@@ -0,0 +1,19 @@
+// Copyright (c) .NET Foundation. All rights reserved.
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+
+using Microsoft.AspNetCore.Blazor.Hosting;
+
+namespace Microsoft.AspNetCore.Blazor.E2EPerformance
+{
+ public class Program
+ {
+ public static void Main(string[] args)
+ {
+ CreateHostBuilder(args).Build().Run();
+ }
+
+ public static IWebAssemblyHostBuilder CreateHostBuilder(string[] args) =>
+ BlazorWebAssemblyHost.CreateDefaultBuilder()
+ .UseBlazorStartup<Startup>();
+ }
+}