Eto.Parse 1.1.0

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

// Install Eto.Parse as a Cake Tool
#tool nuget:?package=Eto.Parse&version=1.1.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 Framework net40 is compatible.  net403 was computed.  net45 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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 59,527 5/24/2021
1.5.0 14,618 6/11/2020
1.4.0 21,019 1/11/2015
1.3.1 2,430 2/9/2014
1.3.0 1,473 9/24/2013
1.2.0 1,292 9/21/2013
1.1.0 1,278 8/20/2013
1.0.2 1,353 8/16/2013
1.0.1.1 1,273 8/11/2013
1.0.0.1 1,322 8/4/2013

Breaking Changes for v1.1:
    * Removed NamedParser and moved Name property to base Parser class
    * ICharTester removed and all char testers are now derived from Parser directly (via CharTerminal), and names end in 'Terminal'
    * Renamed LiteralParser to LiteralTerminal
    * RepeatParser's '-' operator changed to '^' to specify the Until parser
    * '-' operator is now used for an exception using the ExceptParser (to match ebnf syntax)
    * NamedMatch/NamedMatchCollection are now named Match/MatchCollection
    * NamedMatch.Value is now equivalent to Match.Text.
   
    Other changes:
    * More fairly significant performance improvements from restructuring
    * Match.Value added which gets the appropriate object value from each parser (e.g. a number, boolean, escaped string, etc)
    * Added BooleanParser
    * Added option for speed test to compare the output of a property in the parsed json string