Farkle.Tools
5.0.0-rc.1
See the version list below for details.
dotnet tool install --global Farkle.Tools --version 5.0.0-rc.1
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Farkle.Tools --version 5.0.0-rc.1
#tool dotnet:?package=Farkle.Tools&version=5.0.0-rc.1&prerelease
nuke :add-package Farkle.Tools --version 5.0.0-rc.1
This package contains a command-line tool that makes development with Farkle easier and more automatic.
Specifically, it is a modern replacement for the GOLD Parser's "Create Skeleton Program", powered by the Scriban templating engine.
After you install it as a CLI tool, pass the "--help" argument to learn how it works.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
6.5.2 | 80 | 11/10/2024 |
6.5.1 | 10,991 | 1/25/2023 |
6.5.0 | 419 | 9/8/2022 |
6.4.0 | 450 | 3/11/2022 |
6.3.2 | 363 | 10/31/2021 |
6.3.1 | 278 | 10/18/2021 |
6.3.0 | 387 | 10/3/2021 |
6.2.0 | 382 | 5/16/2021 |
6.1.0 | 321 | 3/4/2021 |
6.0.0 | 318 | 2/22/2021 |
6.0.0-alpha.3 | 193 | 11/25/2020 |
6.0.0-alpha.2 | 296 | 8/22/2020 |
6.0.0-alpha.1 | 269 | 4/13/2020 |
5.4.1 | 585 | 3/23/2020 |
5.4.0 | 482 | 3/20/2020 |
5.3.0 | 515 | 2/23/2020 |
5.2.0 | 505 | 2/9/2020 |
5.1.0 | 614 | 1/30/2020 |
5.0.1 | 521 | 8/20/2019 |
5.0.0 | 521 | 8/13/2019 |
5.0.0-rc.7 | 273 | 8/10/2019 |
5.0.0-rc.6 | 288 | 7/22/2019 |
5.0.0-rc.5 | 284 | 7/22/2019 |
5.0.0-rc.4 | 291 | 7/17/2019 |
5.0.0-rc.3 | 281 | 7/17/2019 |
5.0.0-rc.2 | 290 | 7/17/2019 |
5.0.0-rc.1 | 292 | 7/15/2019 |
Farkle now has better C# support. Just write `using Farkle.CSharp;`, and you are good to go!
Farkle now has a CLI tool helper. It can generate a grammar definition file that contains the terminal and production types for your grammar, as well as the EGT file in base-64 encoding. It can also create a skeleton source file to help you write a post-processor. What is more, it supports _both_ C# and F#!
Farkle now has MSBuild integration. You can auto-generate a source file describing your grammar, and not have to carry EGT files around.
As always, performance was improved, especially in the EGT file reader.
__Breaking change:__ In your post-processor, if you have functions like `take2Of production (index1, index2) count func`, remove the `count` parameter.
__Breaking change:__ The `Token` type was moved to `Farkle.Parser` and is not needed by the `AST` type.