Skip to content

Commit ecada2f

Browse files
Update README.md. TODO: Change this to describe working in terms of building your own projects, not hacking on this repo itself.
1 parent 352108b commit ecada2f

File tree

1 file changed

+9
-22
lines changed

1 file changed

+9
-22
lines changed

README.md

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,9 @@ If you're a keen early-adopter type, you can infer usage from the samples. Let u
4444

4545
To get started,
4646

47-
1. Ensure you have [installed the latest stable version of ASP.NET Core](https://www.asp.net/vnext). Instructions are available for [Windows](http://docs.asp.net/en/latest/getting-started/installing-on-windows.html), [Mac](http://docs.asp.net/en/latest/getting-started/installing-on-mac.html), and [Linux](http://docs.asp.net/en/latest/getting-started/installing-on-linux.html).
47+
1. Ensure you have [installed the latest stable version of .NET Core](https://www.microsoft.com/net). The packages are built to work with .NET Core version RC2 or later. [Installers](https://www.microsoft.com/net/download) are available for **Windows**, **OS X**, **Linux**.
4848
2. Ensure you have [installed a recent version of Node.js](https://nodejs.org/en/). To check this works, open a console prompt, and type `node -v`. It should print a version number.
49-
3. Ensure you have installed `gulp` globally. You can check if it's there by running `gulp -v`. If you need to install it:
50-
51-
```
52-
npm install -g gulp
5349
```
54-
5550
3. Clone this repository:
5651
5752
```
@@ -67,38 +62,30 @@ To get started,
6762
6863
Note that to run the React example, you'll also need to run `webpack` from the `samples\react\ReactGrid` directory (having first installed webpack if you don't yet have it - `npm install -g webpack`).
6964
70-
**Using dnx on Windows/Mac/Linux**
71-
72-
1. Ensure you are using a suitable .NET runtime. Currently, this project is tested with version `1.0.0-rc1-final` on `coreclr`:
65+
**Using dotnet on Windows/Mac/Linux**
7366
74-
```
75-
dnvm use 1.0.0-rc1-final -r coreclr
76-
```
77-
78-
2. In the solution root directory (`NodeServices` - i.e., the directory that contains `NodeServices.sln`), restore the .NET dependencies:
67+
1. In the solution root directory (`NodeServices` - i.e., the directory that contains `NodeServices.sln`), restore the .NET dependencies:
7968
8069
8170
```
82-
cd NodeServices
83-
dnu restore
71+
dotnet restore
8472
```
8573
86-
3. Change directory to whichever sample you want to run, then restore the Node dependencies. For example:
74+
2. Change directory to whichever sample you want to run, then restore the Node dependencies. For example:
8775
8876
```
8977
cd samples/angular/MusicStore/
9078
npm install
9179
```
9280
93-
4. Where applicable, build the project. For example, the Angular example uses Gulp, so you'll need to execute `gulp`, whereas the React example uses Webpack, so you'll need to execute `webpack`. The ES2015 example does not need to be built.
81+
3. Where applicable, build the project. For example, the Angular example uses Gulp, so you'll need to execute `gulp`, whereas the React example uses Webpack, so you'll need to execute `webpack`. The ES2015 example does not need to be built.
9482
9583
If you don't already have it, install the applicable build tool first (e.g., `npm install -g webpack`).
9684
97-
5. Run the project (and wait until it displays the message `Application started`)
85+
4. Run the project (and wait until it displays the message `Application started`)
9886
9987
```
100-
dnx web
88+
dotnet run
10189
```
10290
103-
6. Browse to [`http://localhost:5000/`](http://localhost:5000/)
104-
91+
5. Browse to [`http://localhost:5000/`](http://localhost:5000/)

0 commit comments

Comments
 (0)