Copy the binaries (ragel.exe
and gppg.exe
) and add them to the path.
Open the Solution file and compile.
Install nuget and run:
nuget install Microsoft.Net.Compilers
Add msbuild
folder to path:
set PATH=%PATH%;%WINDIR%/Microsoft.NET/Framework64/<version>
To compile, use the path to csc.exe
that is inside the Microsoft.Net.Compilers
folder (that was installed with nuget
):
msbuild /property:CscToolPath=<path_to_csc>
TODO
To run the tests you need:
- NUnit 3.x download | website
- The solution already has a copy of
nunit.framework.dll
, so there is no need to copy it. - OpenCover download | website
- ReportGenerator download | website
Add them to the path and run run_tests.bat
.
The code coverage report will be inside the solution directory at .vs\mint\OpenCover\Report\index.htm
.