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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md b/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
index 2fb68c569..90d98d9fa 100644
--- a/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
+++ b/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
@@ -40,10 +40,10 @@ From the shell/command prompt, issue the following commands, from the folder con
```
dotnet restore
- dotnet build --native --ilcpath bin\Product\Windows_NT.x64.Debug\.nuget\publish1
+ dotnet build --native --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1
```
-Native executable will be dropped in `./bin/[configuration]/[framework]/native/` folder and will have the same name as the folder in which your source file is present.
+Native executable will be dropped in `./bin/[configuration]/[framework]/[runtime]/native/` folder and will have the same name as the folder in which your source file is present.
## Using CPP Code Generator ##
@@ -53,7 +53,7 @@ From the shell/command prompt, issue the following commands to generate the nati
```
dotnet restore
- dotnet build --native --cpp --ilcpath bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd
+ dotnet build --native --cpp --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd
```
Omit `--cppcompilerflags /MTd` for release CoreRT build.