# AFH language See [documentation](../Rms.Risk.Mango/wwwroot/docs/afh-overview.md). # Compiling Unfortunately there is something is wrong with `Antlr4` tooling. According to https://github.com/kaby76/Antlr4BuildTasks/blob/master/Readme.md the project is setup correctly however we are experiencing the following error: > ANT02: Went through the complete probe list looking for an Antlr4 tool jar, but could not find anything To workaround it you can use one of the options: 1. To download it automatically during the build, uncomment this section within Rms.Risk.Mango.Language.csproj : ``` ``` 2. Download `jar` https://www.antlr.org/download.html (direct link https://www.antlr.org/download/antlr-4.13.2-complete.jar) and put it into `$(SolutionDirectory)Resources/Antlr4` folder. Create one if needed. Now it should work.