summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Documentation/building/custom-dnx-instructions.md8
-rw-r--r--Documentation/install/get-dotnetcore-dnx-linux.md14
-rw-r--r--Documentation/install/get-dotnetcore-dnx-osx.md14
-rw-r--r--Documentation/install/get-dotnetcore-dnx-windows.md34
4 files changed, 37 insertions, 33 deletions
diff --git a/Documentation/building/custom-dnx-instructions.md b/Documentation/building/custom-dnx-instructions.md
index 3cfd7904ef..ccda54a175 100644
--- a/Documentation/building/custom-dnx-instructions.md
+++ b/Documentation/building/custom-dnx-instructions.md
@@ -80,7 +80,7 @@ You need to restore dependent nuget packages with the dnu tool (comes with DNX).
You can now run the app, with dnx.
- C:\coreclr-demo>dnx . run
+ C:\coreclr-demo>dnx run
Switching to CoreCLR
====================
@@ -101,7 +101,7 @@ You should now have two runtimes installed. The CoreCLR one will be the default.
You will need to repeat the steps above to run your app on CoreCLR (CoreCLR requires more NuGet packages).
C:\coreclr-demo>dnu restore
- C:\coreclr-demo>dnx . run
+ C:\coreclr-demo>dnx run
Creating a Custom DNX
=====================
@@ -139,7 +139,7 @@ You now need to select the custom DNX as the use to 'use'. You can see the new D
Try running the app again to validate that you have a working installation with the custom DNX.
- C:\coreclr-demo>dnx . run
+ C:\coreclr-demo>dnx run
Injecting a Custom CoreCLR into your Custom DNX
===============================================
@@ -159,4 +159,4 @@ You should re-generate crossgen images for your DNX to provide the best performa
You should now have a working custom CoreCLR x64 DNX. Give it a try.
- C:\coreclr-demo>dnx . run
+ C:\coreclr-demo>dnx run
diff --git a/Documentation/install/get-dotnetcore-dnx-linux.md b/Documentation/install/get-dotnetcore-dnx-linux.md
index 5ef721dfac..6074359150 100644
--- a/Documentation/install/get-dotnetcore-dnx-linux.md
+++ b/Documentation/install/get-dotnetcore-dnx-linux.md
@@ -53,19 +53,19 @@ You first need to acquire the Mono DNX. It doesn't include Mono, but is needed t
dnvm upgrade -u
-Next, acquire the .NET Core DNX SDK.
+Next, acquire the latest .NET Core DNX SDK.
dnvm install latest -r coreclr -u
-You can see the currently installed DNX versions with `dnvm list`.
+You can see the currently installed DNX versions with `dnvm list` (your display may vary as new versions of the DNX are published):
dnvm list
```
Active Version Runtime Arch Location Alias
------ ------- ------- ---- -------- -----
- * 1.0.0-beta5-11649 coreclr x64 ~/.dnx/runtimes
- 1.0.0-beta5-11649 mono ~/.dnx/runtimes default
+ * 1.0.0-beta7-12364 coreclr x64 ~/.dnx/runtimes
+ 1.0.0-beta7-12364 mono ~/.dnx/runtimes default
```
Write your App
@@ -111,13 +111,13 @@ 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-beta5-11649 -r mono
+ dnvm use 1.0.0-beta7-12364 -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-beta5-11649 -r coreclr
- dnx . run
+ dnvm use 1.0.0-beta7-12364 -r coreclr
+ dnx run
Hello, Linux
Love from CoreCLR.
diff --git a/Documentation/install/get-dotnetcore-dnx-osx.md b/Documentation/install/get-dotnetcore-dnx-osx.md
index 0e773aa7c6..b511bf28a7 100644
--- a/Documentation/install/get-dotnetcore-dnx-osx.md
+++ b/Documentation/install/get-dotnetcore-dnx-osx.md
@@ -29,19 +29,19 @@ You first need to acquire the Mono DNX. It includes a specfic version of Mono, a
dnvm upgrade -u
-Next, acquire the .NET Core DNX SDK.
+Next, acquire the latest .NET Core DNX SDK.
dnvm install latest -r coreclr -u
-You can see the currently installed DNX versions with `dnvm list`.
+You can see the currently installed DNX versions with `dnvm list` (your display may vary as new versions of the DNX are published):
dnvm list
```
Active Version Runtime Arch Location Alias
------ ------- ------- ---- -------- -----
- * 1.0.0-beta5-11649 coreclr x64 ~/.dnx/runtimes
- 1.0.0-beta5-11649 mono ~/.dnx/runtimes default
+ * 1.0.0-beta7-12364 coreclr x64 ~/.dnx/runtimes
+ 1.0.0-beta7-12364 mono ~/.dnx/runtimes default
```
Write your App
@@ -87,13 +87,13 @@ 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-beta5-11649 -r mono
+ dnvm use 1.0.0-beta7-12364 -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-beta5-11649 -r coreclr
- dnx . run
+ dnvm use 1.0.0-beta7-12364 -r coreclr
+ dnx run
Hello, OSX
Love from CoreCLR.
diff --git a/Documentation/install/get-dotnetcore-dnx-windows.md b/Documentation/install/get-dotnetcore-dnx-windows.md
index 8c013cce67..6edadc53d2 100644
--- a/Documentation/install/get-dotnetcore-dnx-windows.md
+++ b/Documentation/install/get-dotnetcore-dnx-windows.md
@@ -25,35 +25,39 @@ You can see the currently installed DNX versions with `dnvm list`, which will di
Installing a .NET Core DNX
==========================
-It's easy to install the latest .NET Core-based DNX, using the `dnvm install` command.
+It's easy to install the latest .NET Core-based DNX, using the `dnvm install` command. The `-u` (or `-Unstable`) parameter installs latest unstable version.
C:\coreclr-demo> dnvm install -r coreclr latest -u
-This will install the 32-bit version of .NET Core. If you want the 64-bit version, you can specify processor architecture.
+This will install the 32-bit version of .NET Core. If you want the 64-bit version, you can specify processor architecture:
C:\coreclr-demo> dnvm install -r coreclr -arch x64 latest -u
-You can see the currently installed DNX versions with `dnvm list`.
+You can see the currently installed DNX versions with `dnvm list` (your display may vary as new versions of the DNX are published):
C:\coreclr-demo>dnvm list
- Active Version Runtime Architecture Location
- ------ ------- ------- ------------ --------
- * 1.0.0-beta5-11649 coreclr x64 C:\Users\rlander\.dnx\runtimes
- 1.0.0-beta5-11649 coreclr x86 C:\Users\rlander\.dnx\runtimes
+```
+Active Version Runtime Architecture Location Alias
+------ ------- ------- ------------ -------- -----
+ 1.0.0-beta7-12364 coreclr x86 C:\Users\rlander\.dnx\runtimes
+ 1.0.0-beta7-12364 coreclr x64 C:\Users\rlander\.dnx\runtimes
+```
You can choose which of these DNXs you want to use with `dnvm use`, with similar arguments.
- C:\coreclr-demo>dnvm use -r coreclr -arch x86 1.0.0-beta5-11649
- Adding C:\Users\rlander\.dnx\runtimes\dnx-coreclr-win-x86.1.0.0-beta5-11649\bin
- to process PATH
+```
+C:\coreclr-demo>dnvm use -r coreclr -arch x86 1.0.0-beta7-12364
+Adding C:\Users\rlander\.dnx\runtimes\dnx-coreclr-win-x86.1.0.0-beta7-12364\bin
+to process PATH
- C:\coreclr-demo>dnvm list
+C:\coreclr-demo>dnvm list
- Active Version Runtime Architecture Location
- ------ ------- ------- ------------ --------
- 1.0.0-beta5-11649 coreclr x64 C:\Users\rlander\.dnx\runtimes
- * 1.0.0-beta5-11649 coreclr x86 C:\Users\rlander\.dnx\runtimes
+Active Version Runtime Architecture Location Alias
+------ ------- ------- ------------ -------- -----
+ * 1.0.0-beta7-12364 coreclr x86 C:\Users\rlander\.dnx\runtimes
+ 1.0.0-beta7-12364 coreclr x64 C:\Users\rlander\.dnx\runtimes
+```
Write your App
==============