Skip to content

Commit e430dd3

Browse files
committed
Docs-link ALL THE PLATFORMS
1 parent e006e30 commit e430dd3

File tree

1 file changed

+5
-34
lines changed

1 file changed

+5
-34
lines changed

README.md

Lines changed: 5 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -10,42 +10,13 @@ The key part of working with development feeds is getting your environment set u
1010

1111
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

13-
## Getting Started on Windows
13+
## Getting Started
1414

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).
15+
There are getting started guides for Windows, Mac OS X and Linux on the [ASP.NET Documentation Site](http://docs.asp.net). We suggest installing and using the .NET Version Manager (DNVM) to allow you to manage multiple different versions of the DNX. Instructions for installing DNVM are provided on the relevant Getting Started pages on the documentation site:
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.
18-
19-
### Upgrading DNVM or running without Visual Studio
20-
21-
If you don't want to install Visual Studio or want to upgrade DNVM to the latest version then you need to run the following command:
22-
23-
####CMD
24-
```
25-
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
26-
```
27-
28-
####Powershell
29-
```
30-
&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}
31-
```
32-
33-
This will download the DNVM script and put it in your user profile. You can check the location of DNVM by running the following in a cmd prompt:
34-
35-
```
36-
where dnvm
37-
```
38-
39-
> If the output of `where dnvm` shows a program files location before the user profile, or doesn't show an entry in user profile, then the install has either failed or your PATH is incorrect. After installing dnvm you should have the dnvm script in `%USERPROFILE%\.dnx\bin` and that path needs to be on your PATH.
40-
41-
## OS X
42-
43-
See the instructions on the ASP.NET 5 Documentation site: [Installing ASP.NET 5 on Mac OS X](http://docs.asp.net/en/latest/getting-started/installing-on-mac.html)
44-
45-
## Linux
46-
47-
* [Debian, Ubuntu and derivatives see here](GettingStartedDeb.md)
48-
* **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**
17+
* [Windows](http://docs.asp.net/en/latest/getting-started/installing-on-windows.html)
18+
* [Mac OS X](http://docs.asp.net/en/latest/getting-started/installing-on-mac.html)
19+
* [Linux](http://docs.asp.net/en/latest/getting-started/installing-on-linux.html)
4920

5021
# Running an application
5122

0 commit comments

Comments
 (0)