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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ If you want a more stable, released, experience then you should go to http://www
8
8
9
9
The key part of working with development feeds is getting your environment set up so that you can acquire and switch to new builds of the DNX. Once you have that then it is just a matter of pulling the latest packages from the development MyGet feed.
10
10
11
-
In order to be able to get new builds of the DNX, and switch between them, you need to get the .NET Version Manager (DNVM) command line tool.
11
+
In order to be able to get new builds of the DNX, and switch between them, you need to get the .NET Version Manager (DNVM) command line tool.
12
12
13
13
## Getting Started on Windows
14
14
@@ -43,7 +43,7 @@ where dnvm
43
43
On OS X the best way to get DNVM is to use [Homebrew](http://www.brew.sh). If you don't have Homebrew installed then follow the [Homebrew installation instructions](http://www.brew.sh). Once you have Homebrew then run the following commands:
44
44
45
45
```
46
-
brew tap aspnet/dnvm
46
+
brew tap aspnet/dnx
47
47
brew install dnvm
48
48
```
49
49
Note that on Windows the .NET Framework is already installed, whereas on OS X the brew formula uses a particular version of [Mono](http://www.mono-project.com/) that we know works with ASP.NET 5.
@@ -72,7 +72,7 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
72
72
1. Clone the ASP.NET 5 Home repository: https://github.com/aspnet/home
73
73
2. Change directory to the folder of the sample you want to run
74
74
3. Run ```dnu restore``` to restore the packages required by that sample.
75
-
4. You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
75
+
4. You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
76
76
5. Run the sample using the appropriate K command:
77
77
- For the console app run `dnx . run`.
78
78
- For the web apps run `dnx . web` on Windows or `dnx . kestrel` on OS X/Linux.
@@ -82,7 +82,7 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
0 commit comments