The best way to install ReactJS.NET is via NuGet. There are several NuGet packages available:
These packages can be installed either via the UI in Visual Studio, or via the Package Manager Console:
Install-Package React.AspNet
Development builds are automatically built after every change. Use these if you want the very latest bleeding-edge version. These are located on a custom package server so you need to add this as a package source in Visual Studio:
To build your own copy of ReactJS.NET (for example, if implementing a new feature or fixing a bug):
dev-build.bat
Your first build always needs to be done using the build script (dev-build.bat
) as
this generates a few files required by the build (such as
SharedAssemblyVersionInfo.cs
). Once this build is completed, you can open
React.sln
in Visual Studio and compile directly from Visual Studio.