1
- React .NET
1
+ ReactJS .NET
2
2
=========
3
- React .NET is a library that makes it easier to use Facebook's
3
+ ReactJS .NET is a library that makes it easier to use Facebook's
4
4
[ React] ( http://facebook.github.io/react/ ) and
5
5
[ JSX] ( http://facebook.github.io/react/docs/jsx-in-depth.html ) from C#.
6
6
@@ -66,7 +66,7 @@ Now skip down to the [usage section](#usage)
66
66
67
67
Manual Installation
68
68
-------------------
69
- 1 . Compile React .NET by running ` build.bat `
69
+ 1 . Compile ReactJS .NET by running ` build.bat `
70
70
2 . Reference React.dll and React.Mvc4.dll (if using MVC 4) in your Web
71
71
Application project
72
72
3 . See usage example below
@@ -97,7 +97,7 @@ production you will want to precompile for best performance.
97
97
98
98
ASP.NET Bundling and Minification Support
99
99
-----------------------------------------
100
- React .NET supports the use of Microsoft's
100
+ ReactJS .NET supports the use of Microsoft's
101
101
[ ASP.NET Bundling and Minification] ( http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification )
102
102
library to compile JSX into JavaScript and minify it along with all your other
103
103
JavaScript. Simply create a ` JsxBundle ` containing any number of JSX or regular
@@ -166,7 +166,7 @@ initialisation code.
166
166
``` html
167
167
<!-- Load all your scripts normally before calling ReactInitJavaScript -->
168
168
<!-- Assumes minification/combination is configured as per previous section -->
169
- <script src =" http://fb.me/react-0.9 .0.min.js" ></script >
169
+ <script src =" http://fb.me/react-0.10 .0.min.js" ></script >
170
170
@Scripts.Render("~/bundles/main")
171
171
@Html.ReactInitJavaScript()
172
172
```
@@ -181,7 +181,7 @@ Hit the page and admire the server-rendered beauty:
181
181
</div >
182
182
</div >
183
183
184
- <script src =" http://fb.me/react-0.9 .0.min.js" ></script >
184
+ <script src =" http://fb.me/react-0.10 .0.min.js" ></script >
185
185
<script src =" /Scripts/HelloWorld.react.js" ></script >
186
186
<script >React .renderComponent (HelloWorld ({" name" : " Daniel" }), document .getElementById (" react1" )); </script >
187
187
```
@@ -199,7 +199,7 @@ Changelog
199
199
200
200
Licence
201
201
=======
202
- BSD License for React .NET
202
+ BSD License for ReactJS .NET
203
203
204
204
Copyright (c) 2014, Facebook, Inc. All rights reserved.
205
205
0 commit comments