Eto.Parse 1.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Eto.Parse --version 1.5.0
NuGet\Install-Package Eto.Parse -Version 1.5.0
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="Eto.Parse" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Eto.Parse --version 1.5.0
#r "nuget: Eto.Parse, 1.5.0"
#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 Eto.Parse as a Cake Addin
#addin nuget:?package=Eto.Parse&version=1.5.0

// Install Eto.Parse as a Cake Tool
#tool nuget:?package=Eto.Parse&version=1.5.0

Eto.Parse is a highly optimized recursive decent LL(k) parser framework that can be used to create parsers for complex grammars that go beyond the capability of regular expressions.

You can use BNF, EBNF, or Gold parser grammars to define your parser, code them directly using a fluent API, or use shorthand operators (or a mix of each).

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 (1)

Showing the top 1 NuGet packages that depend on Eto.Parse:

Package Downloads
FlipSky.MineCraft.Scripting

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.0 57,213 5/24/2021
1.5.0 14,548 6/11/2020
1.4.0 21,002 1/11/2015
1.3.1 2,429 2/9/2014
1.3.0 1,472 9/24/2013
1.2.0 1,291 9/21/2013
1.1.0 1,277 8/20/2013
1.0.2 1,352 8/16/2013
1.0.1.1 1,272 8/11/2013
1.0.0.1 1,321 8/4/2013

Changes for v1.5:
* Add .NET Standard 2.0 target
* Add .NET 4.5 target
* Remove PCL and .NET 4.0 builds
* Add a minimal AST builder
* General fixes

Changes for v1.4:
* Optimize character-only alternations (sets, ranges, and characters) to a single CharacterSet
* Add w3c ebnf style
* Add ability to combine styles for the Ebnf grammar parser
* Added surrogate pair and range terminals to match a double byte character
* Add TagParser to tag a parse tree to control child parsers to require or exclude tags
* Add Parser.PreventRecursion() fluent method

Changes for v1.3.1:
* More minor performance improvements
* Updates to Gold grammar parser to handle whitespace in grammar, character set ranges, and Auto Whitespace option
* Added XmlGrammar sample and tests (see github)
* BREAKING: WithName() now also makes the parser separate

Changes for v1.3:
* Improved performance by another ~9%
* Remove ParseMatch struct
* Parser.Parse/InnerParse now returns a match length only
* Scanner.ReadChar() now returns an int instead of a char/bool combo
* Added Scanner.Peek()
* NumberParser fixes when at the end of the input string

Changes for v1.2:
* Improved performance by ~10%
* Added GrammarMatch.ChildErrorIndex to give you the actual index of the error
* Fix GrammarMatch.Errors to only include errors that occur on ErrorIndex, not all parents
* EolTerminal now matches \r\n, \n, or \r, not just a singe character
* Add RepeatParser.SkipUntil and CaptureUntil to specify how to deal with the until parser (default is false for both)
* Included xml documentation to give better help for common things (not everything is documented yet)