Farkle 5.0.0-rc.1

This is a prerelease version of Farkle.
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Farkle --version 5.0.0-rc.1
NuGet\Install-Package Farkle -Version 5.0.0-rc.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Farkle" Version="5.0.0-rc.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Farkle --version 5.0.0-rc.1
#r "nuget: Farkle, 5.0.0-rc.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Farkle as a Cake Addin
#addin nuget:?package=Farkle&version=5.0.0-rc.1&prerelease

// Install Farkle as a Cake Tool
#tool nuget:?package=Farkle&version=5.0.0-rc.1&prerelease

Farkle is a parser library inspired by, and based on the GOLD Parser.

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.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.5.1 12,006 1/25/2023
6.5.0 432 9/8/2022
6.4.0 616 3/11/2022
6.3.2 393 10/31/2021
6.3.1 324 10/18/2021
6.3.0 390 10/3/2021
6.2.0 412 5/16/2021
6.1.0 349 3/4/2021
6.0.0 367 2/22/2021
6.0.0-alpha.3 193 11/25/2020
6.0.0-alpha.2 265 8/22/2020
6.0.0-alpha.1 243 4/13/2020
5.4.1 608 3/23/2020
5.4.0 481 3/20/2020
5.3.0 526 2/23/2020
5.2.0 517 2/9/2020
5.1.0 595 1/30/2020
5.0.1 530 8/20/2019
5.0.0 508 8/13/2019
4.0.2 546 8/20/2019
4.0.1 533 8/11/2019
4.0.0 684 1/17/2019
3.0.0 932 7/15/2018
2.0.0 933 9/3/2017
1.0.0 1,055 8/9/2017

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.