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/README.netcore.md')
-rw-r--r--sdks/README.netcore.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/sdks/README.netcore.md b/sdks/README.netcore.md
deleted file mode 100644
index 0a2958a362e..00000000000
--- a/sdks/README.netcore.md
+++ /dev/null
@@ -1,25 +0,0 @@
-```
-git clone --branch add-ios https://github.com/akoeplinger/runtime
-cd runtime
-./build.sh --restore
-./build.sh --build --buildtests --os iOSSimulator
-./build.sh --build --buildtests --os iOSDevice
-cd ..
-
-cd mono
-
-echo ENABLE_IOS=1 > sdks/Make.config
-echo ENABLE_NETCORE=1 >> sdks/Make.config
-echo DISABLE_CLASSIC=1 >> sdks/Make.config
-echo DOTNET_RUNTIME_REPO_DIR=$(cd ../runtime && pwd) >> sdks/Make.config
-
-make -C sdks/builds build-ios -j8
-make -C sdks/builds package-ios -j8
-
-make -C sdks/ios build-ios-sim-System.Runtime.Tests
-make -C sdks/ios run-ios-sim-System.Runtime.Tests
-
-# for iOS 13 device runs we need latest ios-deploy tool from master:
-brew uninstall ios-deploy
-brew install --HEAD ios-deploy
-```