ApexParser 0.6.18

dotnet add package ApexParser --version 0.6.18
                    
NuGet\Install-Package ApexParser -Version 0.6.18
                    
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="ApexParser" Version="0.6.18" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ApexParser" Version="0.6.18" />
                    
Directory.Packages.props
<PackageReference Include="ApexParser" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ApexParser --version 0.6.18
                    
#r "nuget: ApexParser, 0.6.18"
                    
#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.
#:package ApexParser@0.6.18
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ApexParser&version=0.6.18
                    
Install as a Cake Addin
#tool nuget:?package=ApexParser&version=0.6.18
                    
Install as a Cake Tool

A Roslyn-like parser for the Salesforce programming language APEX

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 net461 was computed.  net462 is compatible.  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
0.6.18 1,376 11/19/2018
0.6.17 996 11/4/2018
0.6.16 993 11/3/2018
0.6.15 1,014 11/1/2018
0.6.14 983 10/30/2018
0.6.13 1,036 10/27/2018
0.6.12 995 10/17/2018
0.6.11 1,053 10/11/2018
0.6.10 1,064 10/8/2018
0.6.8 1,467 3/2/2018
0.6.7 1,488 1/14/2018
0.6.6 1,451 1/4/2018
0.6.5 1,769 12/21/2017
0.6.4 1,479 12/20/2017
0.6.3 1,490 12/20/2017
0.6.2 1,531 12/14/2017
0.6.1 1,284 12/14/2017
0.6.0 1,301 12/13/2017
0.5.3-beta 1,402 12/12/2017
0.5.2-beta 1,257 12/12/2017
0.5.1-beta 1,306 12/11/2017
0.5.0-beta 1,318 12/9/2017

Beta release. What's new:

     v0.6.18:
     — Fixed a parsing issue related to SOQL queries

     v0.6.17:
     — Minor improvement in the primitive type conversion

     v0.6.16:
     — Improved the typeof expression handling
     — Added using Apex to the generated C# code

     v0.6.15:
     — All floating-point literals are now treated as decimals

     v0.6.14:
     — Added a few more autogenerated constructors to the Apex exceptions

     v0.6.13:
     — Don't translate static member access expressions on primitive types
     — Fixed an issue related to the field declarators
     — Added Apex.ApexSharp.Extensions namespace to generated C# code
     — Automatically add constructors to empty Apex exception classes
     — Updated reserved words

     v0.6.12:
     — Added support for the virtual class modifier

     v0.6.11:
     — Fixed a bug with string literals
     — Updated Sprache dependency to the stable v2.2.0

     v0.6.10:
     — Added switch statement support
     — Updated Roslyn C# parser dependency to v2.9.0

     v0.6.2:
     — Updated the grammar to be able to parse the standard APIs