Farkle.Tools 5.0.0-rc.1

This is a prerelease version of Farkle.Tools.
There is a newer version of this package available.
See the version list below for details.
dotnet tool install --global Farkle.Tools --version 5.0.0-rc.1
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Farkle.Tools --version 5.0.0-rc.1
This package contains a .NET tool you can call from the shell/command line.
#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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
6.5.1 3,393 1/25/2023
6.5.0 385 9/8/2022
6.4.0 419 3/11/2022
6.3.2 337 10/31/2021
6.3.1 253 10/18/2021
6.3.0 356 10/3/2021
6.2.0 352 5/16/2021
6.1.0 293 3/4/2021
6.0.0 291 2/22/2021
6.0.0-alpha.3 180 11/25/2020
6.0.0-alpha.2 283 8/22/2020
6.0.0-alpha.1 259 4/13/2020
5.4.1 558 3/23/2020
5.4.0 460 3/20/2020
5.3.0 492 2/23/2020
5.2.0 478 2/9/2020
5.1.0 584 1/30/2020
5.0.1 490 8/20/2019
5.0.0 498 8/13/2019
5.0.0-rc.7 262 8/10/2019
5.0.0-rc.6 275 7/22/2019
5.0.0-rc.5 271 7/22/2019
5.0.0-rc.4 277 7/17/2019
5.0.0-rc.3 268 7/17/2019
5.0.0-rc.2 278 7/17/2019
5.0.0-rc.1 279 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.