0.2
- Precompilation of JSX files via MSBuild
- Partial Linux (Mono) support.
Server-side component rendering is supported, but JSX compilation is not yet
supported. To use JSX on Mono, you will need to precompile your JSX files
via MSBuild. - Cassette MSBuild support - Bundle and minify your JavaScript before
deployment to improve performance
Internal technical changes:
- React core no longer depends on System.Web, for easier use outside of an
ASP.NET context (eg. in a command-line or OWIN application) - JSX transformation split from
IReactEnvironment
into newIJsxTransformer
interface. The previousIReactEnvironment.LoadJsxFile
and
IReactEnvironment.TransformJsx
methods have been marked as obsolete, please
useIReactEnvironment.JsxTransformer.TransformJsxFile
instead.