Skip to content

Releases: reactjs/React.NET

1.1

26 Feb 05:50
Compare
Choose a tag to compare
1.1

1.0

26 Feb 05:50
Compare
Choose a tag to compare
1.0

0.2

26 Feb 05:51
Compare
Choose a tag to compare
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 new IJsxTransformer
    interface. The previous IReactEnvironment.LoadJsxFile and
    IReactEnvironment.TransformJsx methods have been marked as obsolete, please
    use IReactEnvironment.JsxTransformer.TransformJsxFile instead.