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-22Lines changed: 9 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,14 +44,9 @@ If you're a keen early-adopter type, you can infer usage from the samples. Let u
44
44
45
45
To get started,
46
46
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**.
48
48
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
53
49
```
54
-
55
50
3. Clone this repository:
56
51
57
52
```
@@ -67,38 +62,30 @@ To get started,
67
62
68
63
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`).
69
64
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**
73
66
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:
79
68
80
69
81
70
```
82
-
cd NodeServices
83
-
dnu restore
71
+
dotnet restore
84
72
```
85
73
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:
87
75
88
76
```
89
77
cd samples/angular/MusicStore/
90
78
npm install
91
79
```
92
80
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.
94
82
95
83
If you don't already have it, install the applicable build tool first (e.g., `npm install -g webpack`).
96
84
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`)
98
86
99
87
```
100
-
dnx web
88
+
dotnet run
101
89
```
102
90
103
-
6. Browse to [`http://localhost:5000/`](http://localhost:5000/)
104
-
91
+
5. Browse to [`http://localhost:5000/`](http://localhost:5000/)
0 commit comments