1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-11 18:20:26 +09:00

Update build syntax in mono build docs (#48754)

This commit is contained in:
Eirik Tsarpalis 2021-02-25 15:13:17 +00:00 committed by GitHub
parent 8be118e502
commit 8483e9edc8
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,11 +13,11 @@ Before proceeding further, please click on the link above that matches your mach
To build a complete runtime environment, you need to build both the Mono runtime and libraries. At the repo root, simply execute:
```bash
./build.sh --subset mono+libs
./build.sh mono+libs
```
or on Windows,
```cmd
build.cmd -subset mono+libs
build.cmd mono+libs
```
Note that the debug configuration is the default option. It generates a 'debug' output and that includes asserts, fewer code optimizations, and is easier for debugging. If you want to make performance measurements, or just want tests to execute more quickly, you can also build the 'release' version which does not have these checks by adding the flag `-configuration release` (or `-c release`).
@ -25,11 +25,11 @@ Note that the debug configuration is the default option. It generates a 'debug'
Once you've built the complete runtime and assuming you want to work with just mono, you want to use the following command:
```bash
./build.sh --subset mono
./build.sh mono
```
or on Windows,
```cmd
build.cmd -subset mono
build.cmd mono
```
When the build completes, product binaries will be dropped in the `artifacts\bin\mono\<OS>.<arch>.<flavor>` folder.
@ -66,11 +66,11 @@ See the instructions for [Testing iOS](../../testing/libraries/testing-apple.md)
To generate nuget packages:
```bash
./build.sh --subset mono -pack (with optional release configuration)
./build.sh mono -pack (with optional release configuration)
```
or on Windows,
```cmd
build.cmd -subset mono -pack (with optional release configuration)
build.cmd mono -pack (with optional release configuration)
```
The following packages will be created under `artifacts\packages\<configuration>\Shipping`: