Skip to content

Commit f76c712

Browse files
Eilonglennc
authored andcommitted
More typos and whatnot
1 parent 1b7ae20 commit f76c712

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

README.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ If you want a more stable, released, experience then you should go to http://www
66

77
## What you need
88

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.
1010

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.
1212

1313
## Getting Started on Windows
1414

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).
1616

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.
1818

1919
### Upgrading DNVM or running without Visual Studio
2020

@@ -40,24 +40,22 @@ where dnvm
4040
4141
## OS X
4242

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:
4444

4545
```
4646
brew tap aspnet/k
4747
brew install dnvm
4848
```
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.
5050

5151
## Linux
5252

5353
* [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**
5555

5656
# Running an application
5757

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:
6159

6260
```
6361
dnvm upgrade
@@ -79,7 +77,7 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
7977
- For the console app run `dnx . run`.
8078
- For the web apps run `dnx . web` on Windows or `dnx . kestrel` on OS X/Linux.
8179
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.
8381

8482
# Documentation and Further Learning
8583

0 commit comments

Comments
 (0)