LunaRoad 1.4.0

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

// Install LunaRoad as a Cake Tool
#tool nuget:?package=LunaRoad&version=1.4.0

       Lua C API for .NET
       LunaRoad represents a flexible platform to work with Lua.
       _ _ _ _ _ _
       using(var l = new Lua<ILua51>("Lua.dll")) { /* ILua51, ILua52, ILua53, ... */ }

       _ _ _ _ _ _
       Source code and all details here: https://github.com/3F/LunaRoad
       The MIT License (MIT)
       ~~~~~~~~

       Alternative to get it:
       ==========================================
       msbuild gnt.core /p:ngpackages="LunaRoad/1.4.0"
       ==========================================
       * https://github.com/3F/GetNuTool  

      

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

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
1.4.1.2 1,299 8/18/2020
1.4.1 3,150 12/2/2016
1.4.0 2,608 8/18/2016
1.3.0 1,674 8/3/2016
1.2.0 2,352 7/27/2016
1.1.1 1,737 7/23/2016

public release [v1.4-beta]

   * CHANGED: Updated Conari engine v1.1
              https://github.com/3F/Conari

   * NEW: DLR features with caching of dynamic types.
   * NEW: Added access to export functions of Lua. `ILoader.ExportFunctionNames`
   * NEW: Added features for convenient work with any binary raw data.
   * NEW: Added events:
          * BeforeUnload - Before unloading a library.
          * AfterUnload - When library has been unloaded.
          * AfterLoad - When library has been loaded.
          * PrefixChanged - When Prefix has been changed.

   * FIXED: bug with CharPtr when unboxing for unmanaged code.
   * FIXED: trivial fixes with implicit conversion for size_t and UIntPtr.
   * CHANGED: Updated CharPtr: +BSTR, +WCharPtr & added new UnmanagedString, that allocates strings for unmanaged code.
   * CHANGED: Other trivial fixes and improvements.