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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sdks/wasm/docs/development.md')
-rw-r--r--sdks/wasm/docs/development.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/sdks/wasm/docs/development.md b/sdks/wasm/docs/development.md
deleted file mode 100644
index f6b4b4d9f54..00000000000
--- a/sdks/wasm/docs/development.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# NETCORE Support
-
-Currently, only local development is supported on osx.
-
-* Get a working ```dotnet/runtime``` repo.
-* Build the 'Libs' subset in that repo.
-* Add the following to ```sdks/Make.config```:
-```
-ENABLE_WASM_NETCORE=1
-ENABLE_WASM_NETCORE_LOCAL_BUILD=1
-DOTNET_REPO_PATH=<path to your dotnet/runtime repo>
-```
-* ```make runtime-netcore``` will build the runtime and corelib for wasm and copy the result into ```out/wasm-runtime-netcore-release```
-where the rest of the build will pick it up similarly to the non-netcore case.
-* See the ```run-interp-netcore-hello``` make target for a sample.