summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorpaulnice <ru.pchel@gmail.com>2015-09-14 08:07:24 -0700
committerpaulnice <ru.pchel@gmail.com>2015-09-14 08:07:24 -0700
commitceabbbc2c6cc129ee09b6159acae71055f99460f (patch)
tree165665c732a6e7a24e7adef9b42847b576631e10 /Documentation
parent98c63c1612b2635a40d9a719c1505e0ad4bef08a (diff)
downloadcoreclr-ceabbbc2c6cc129ee09b6159acae71055f99460f.tar.gz
coreclr-ceabbbc2c6cc129ee09b6159acae71055f99460f.tar.bz2
coreclr-ceabbbc2c6cc129ee09b6159acae71055f99460f.zip
Fix runtime versions
1. Fix the sample output of 'dnvm list' command with the latest one. 2. Fix the 'dnvm use' commands with the current runtime versions.
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