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