From 284be20da17c819abdf26fe3ff1f99dcc17c4a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Sat, 19 Mar 2016 15:01:28 -0700 Subject: Fix paths in instructions Native executable is actually dropped in directories like `bin\Debug\dnxcore50\win7-x64\native` on my box. Prefix ilcpath with `repo_root`. --- .../how-to-build-and-run-ilcompiler-in-console-shell-prompt.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Documentation') 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 \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 \bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd ``` Omit `--cppcompilerflags /MTd` for release CoreRT build. -- cgit v1.2.3