[merp] Add tests for crashing via POSIX signal (#19977)
[mono-project.git] / sdks / README.netcore.md
blob0a2958a362e83438bdfa563e3a5478ddb8cf9b35
1 ```
2 git clone --branch add-ios https://github.com/akoeplinger/runtime
3 cd runtime
4 ./build.sh --restore
5 ./build.sh --build --buildtests --os iOSSimulator
6 ./build.sh --build --buildtests --os iOSDevice
7 cd ..
9 cd mono
11 echo ENABLE_IOS=1 > sdks/Make.config
12 echo ENABLE_NETCORE=1 >> sdks/Make.config
13 echo DISABLE_CLASSIC=1 >> sdks/Make.config
14 echo DOTNET_RUNTIME_REPO_DIR=$(cd ../runtime && pwd) >> sdks/Make.config
16 make -C sdks/builds build-ios -j8
17 make -C sdks/builds package-ios -j8
19 make -C sdks/ios build-ios-sim-System.Runtime.Tests
20 make -C sdks/ios run-ios-sim-System.Runtime.Tests
22 # for iOS 13 device runs we need latest ios-deploy tool from master:
23 brew uninstall ios-deploy
24 brew install --HEAD ios-deploy
25 ```