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
+9-11Lines changed: 9 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ If you want a more stable, released, experience then you should go to http://www
6
6
7
7
## What you need
8
8
9
-
The key part of working with development feeds is getting your environment setup 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.
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 DNX 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
15
-
The easiest way to get started on Windows is to grab the latest CTP of Visual Studio, which can be found [here](http://go.microsoft.com/fwlink/?LinkId=521794).
15
+
The easiest way to get started on Windows is to grab the latest preview of Visual Studio 2015, which can be found [here](http://go.microsoft.com/fwlink/?LinkId=521794).
16
16
17
-
Visual Studio will install DNVM for you, so if you open a command prompt and type DNVM you should get some help text.
17
+
Visual Studio will install DNVM for you, so if you open a command prompt and type `dnvm` you should get some help text.
18
18
19
19
### Upgrading DNVM or running without Visual Studio
20
20
@@ -40,24 +40,22 @@ where dnvm
40
40
41
41
## OS X
42
42
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 instructions [here](http://www.brew.sh). Once you have Homebrew then run the following commands:
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
46
brew tap aspnet/k
47
47
brew install dnvm
48
48
```
49
-
Note that on Windows the .NET framework is installed already, whereas on OS X the brew formula compiles a particular version of [Mono](http://www.mono-project.com/) that we know works with ASP.NET 5.
49
+
Note that on Windows the .NET Framework is already installed, whereas on OS X the brew formula compiles a particular version of [Mono](http://www.mono-project.com/) that we know works with ASP.NET 5.
50
50
51
51
## Linux
52
52
53
53
*[Debian, Ubuntu and derivatives see here](GettingStartedDeb.md)
54
-
***CentOS, Fedora and derivatives don't currently have a seperate guide. We should have one soon. The commands are mostly the same, with some differences to account for the different package manager**
54
+
***CentOS, Fedora and derivatives don't currently have a separate guide. We should have one soon. The commands are mostly the same, with some differences to account for the different package manager**
55
55
56
56
# Running an application
57
57
58
-
Now we should have an environment that works and you can should be able to run an ASP.NET 5 application
59
-
60
-
The first thin to do is download a DNX to run your applications with:
58
+
Now that you have DNVM, you need to use it to download a DNX to run your applications with:
61
59
62
60
```
63
61
dnvm upgrade
@@ -79,7 +77,7 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
79
77
- For the console app run `dnx . run`.
80
78
- For the web apps run `dnx . web` on Windows or `dnx . kestrel` on OS X/Linux.
81
79
6. You should see the output of the console app or a message that says the site is now started.
82
-
7. You can navigate to the web apps in a browser by going to "http://localhost:5001" or "http://localhost:5004" if running on OS X/Linux.
80
+
7. You can navigate to the web apps in a browser by navigating to `http://localhost:5001` or `http://localhost:5004` if running on OS X/Linux.
0 commit comments