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:
authorLarry Ewing <lewing@microsoft.com>2019-02-14 23:17:22 +0300
committerGitHub <noreply@github.com>2019-02-14 23:17:22 +0300
commitb4d665157054d1a8f03d9f0f749fbfe5c4493f04 (patch)
tree4330f04f45a9b6e0cd16af343a2bee83d074f08d /wasm/Newtonsoft/Startup.cs
parentf21ff68f3c1447bf058e98d07a596a16e89c44aa (diff)
parent1f39d72d44809e0dc77212d38861d8994f974794 (diff)
Merge pull request #1 from lewing/wasm-tests
Add intial wasm assets
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");
+ }
+ }
+}