You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
35
-
sudo apt-get update
36
-
sudo apt-get install mono-complete
37
29
38
30
Certificates
39
31
^^^^^^^^^^^^
@@ -56,17 +48,7 @@ You need DNVM as a starting point. DNVM enables you to acquire one or multiple .
56
48
Installing the .NET Core DNX
57
49
----------------------------
58
50
59
-
You first need to acquire the Mono DNX. It doesn't include Mono, but is
60
-
needed to use the DNX tools on top of Mono. In particular, the DNU
61
-
command is not yet supported on .NET Core, requiring us to use Mono for
62
-
this purpose (until DNU runs on .NET Core). Mono is the default DNX, so
63
-
you can acquire it via ``dnvm upgrade``.
64
-
65
-
.. code-block:: console
66
-
67
-
dnvm upgrade -u
68
-
69
-
Next, acquire the .NET Core DNX SDK.
51
+
You first need to acquire the CoreCLR DNX.
70
52
71
53
.. code-block:: console
72
54
@@ -83,7 +65,6 @@ You can see the currently installed DNX versions with ``dnvm list``.
83
65
Active Version Runtime Arch Location Alias
84
66
------ ------- ------- ---- -------- -----
85
67
* 1.0.0-beta5-11649 coreclr x64 ~/.dnx/runtimes
86
-
1.0.0-beta5-11649 mono ~/.dnx/runtimes default
87
68
88
69
Using a specific runtime
89
70
------------------------
@@ -101,7 +82,6 @@ You can choose which of the installed DNXs you want to use with ``dnvm use``, sp
101
82
Active Version Runtime Arch Location Alias
102
83
------ ------- ------- ---- -------- -----
103
84
* 1.0.0-beta5-11649 coreclr x64 ~/.dnx/runtimes
104
-
1.0.0-beta5-11649 mono ~/.dnx/runtimes default
105
85
106
86
See the asterisk in the listing above? It's purpose is to tell you which runtime is now active. "Active" here means that all of the interaction with your projects and .NET Core will use this runtime.
107
87
@@ -149,19 +129,11 @@ Run your App
149
129
------------
150
130
151
131
You need to restore packages for your app, based on your project.json,
152
-
with ``dnu restore``. You will need to run this command under the Mono
153
-
DNX. The first command switches the active runtime to the Mono one.
132
+
with ``dnu restore``.
154
133
155
134
.. code-block:: console
156
135
157
-
dnvm use 1.0.0-beta5-11649 -r mono
158
136
dnu restore
159
-
160
-
You are now ready to run your app under .NET Core. As you can guess, however, before you do that you first need to switch to the .NET Core runtime. The first command below does exactly that.
0 commit comments