summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-09-16 09:07:48 -0700
committerJan Kotas <jkotas@microsoft.com>2015-09-16 09:07:48 -0700
commitc27a149e3e0b15e5449ab5a0b6c87752dae2ee4e (patch)
tree95444aeebe7dc9b2a567d470f5a91c91318a2c99 /Documentation
parentf8c2d7a18e90834f29107fa6cd1a3fc3d80da77c (diff)
parentceabbbc2c6cc129ee09b6159acae71055f99460f (diff)
downloadcoreclr-c27a149e3e0b15e5449ab5a0b6c87752dae2ee4e.tar.gz
coreclr-c27a149e3e0b15e5449ab5a0b6c87752dae2ee4e.tar.bz2
coreclr-c27a149e3e0b15e5449ab5a0b6c87752dae2ee4e.zip
Merge pull request #1553 from paulnice/patch-1
Fix runtime versions in the Console example
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/install/get-dotnetcore-dnx-linux.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/install/get-dotnetcore-dnx-linux.md b/Documentation/install/get-dotnetcore-dnx-linux.md
index 6074359150..a26f8a99fc 100644
--- a/Documentation/install/get-dotnetcore-dnx-linux.md
+++ b/Documentation/install/get-dotnetcore-dnx-linux.md
@@ -62,10 +62,10 @@ You can see the currently installed DNX versions with `dnvm list` (your display
dnvm list
```
-Active Version Runtime Arch Location Alias
------- ------- ------- ---- -------- -----
- * 1.0.0-beta7-12364 coreclr x64 ~/.dnx/runtimes
- 1.0.0-beta7-12364 mono ~/.dnx/runtimes default
+Active Version Runtime Architecture OperatingSystem Alias
+------ ------- ------- ------------ --------------- -----
+ * 1.0.0-beta8-15613 coreclr x64 linux
+ 1.0.0-beta8-15613 mono linux/osx default
```
Write your App
@@ -111,12 +111,12 @@ Run your App
You need to restore packages for your app, based on your project.json, with `dnu restore`. You will need to run this command under the Mono DNX. Make sure that you are using that one.
- dnvm use 1.0.0-beta7-12364 -r mono
+ dnvm use 1.0.0-beta8-15613 -r mono
dnu restore
You can run your app with .NET Core, although make sure to switch to that DNX.
- dnvm use 1.0.0-beta7-12364 -r coreclr
+ dnvm use 1.0.0-beta8-15613 -r coreclr
dnx run
Hello, Linux