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/Startup.cs')
-rw-r--r--wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Startup.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Startup.cs b/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Startup.cs
new file mode 100644
index 0000000..7422cd8
--- /dev/null
+++ b/wasm/Microsoft.AspNetCore.Blazor.E2EPerformance/Startup.cs
@@ -0,0 +1,20 @@
+// 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.Components.Builder;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace Microsoft.AspNetCore.Blazor.E2EPerformance
+{
+ public class Startup
+ {
+ public void ConfigureServices(IServiceCollection services)
+ {
+ }
+
+ public void Configure(IComponentsApplicationBuilder app)
+ {
+ app.AddComponent<App>("app");
+ }
+ }
+}