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:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2016-03-30 08:54:33 +0300
committerMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2016-03-30 08:54:33 +0300
commit4ef088d17427c157f2ac617ee748bb13df6c939e (patch)
tree6c75e5df1df1a3397dc0927f71de1bf578ee3e0d /Documentation
parent0352ebcd70d84e100c38ce8fc5cb69fd577e2744 (diff)
Update path in instructions .nuget -> packaging
Diffstat (limited to 'Documentation')
-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 90d98d9fa..77e4f56f9 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
@@ -11,7 +11,7 @@ build[.cmd|.sh] clean [Debug|Release]
This will result in the following:
- Restore nuget packages required for building
-- Build native and managed components of ILCompiler. The final binaries are placed to `<repo_root>\bin\Product\<OS>.<arch>.<Config>\.nuget\publish1`.
+- Build native and managed components of ILCompiler. The final binaries are placed to `<repo_root>\bin\Product\<OS>.<arch>.<Config>\packaging\publish1`.
- Build and run tests
- Installs the latest CLI tools at `<repo_root>\bin\tools\cli`
@@ -40,7 +40,7 @@ From the shell/command prompt, issue the following commands, from the folder con
```
dotnet restore
- dotnet build --native --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1
+ dotnet build --native --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\packaging\publish1
```
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.
@@ -53,7 +53,7 @@ From the shell/command prompt, issue the following commands to generate the nati
```
dotnet restore
- dotnet build --native --cpp --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd
+ dotnet build --native --cpp --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\packaging\publish1 --cppcompilerflags /MTd
```
Omit `--cppcompilerflags /MTd` for release CoreRT build.