LunaRoad 1.2.0

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

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


   
       Lua C API for .NET
       LunaRoad represents a flexible platform to work with Lua.
       _ _ _ _ _ _
       Source code and all details here: https://github.com/3F/LunaRoad
       
       ~~~~~~~~
       Alternative to get it:
       ==========================================
       msbuild gnt.core /p:ngpackages="LunaRoad/1.2.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,285 8/18/2020
1.4.1 3,139 12/2/2016
1.4.0 2,599 8/18/2016
1.3.0 1,665 8/3/2016
1.2.0 2,343 7/27/2016
1.1.1 1,728 7/23/2016

public beta release [v1.2-beta]

* NEW: LuaInteger type.
* NEW: The lua.h constants of v5.1/2/3 represented with LuaH.
* NEW: API. added:
       * `void lua_settop (lua_State *L, int index);` /v5.1, 5.2, 5.3
       * `int lua_gettop (lua_State *L);` /v5.1, 5.2, 5.3
       * `void lua_pushvalue (lua_State *L, int index);` /v5.1, 5.2, 5.3
       * `void lua_getfield (lua_State *L, int index, const char *k);` /v5.1, 5.2
       * * int lua_getfield (lua_State *L, int index, const char *k);` /v5.3
       * `void rawset(LuaState L, int index);` /v5.1; 5.2; 5.3
       * `void rawseti(LuaState L, int index, int n);` /v5.1; 5.2
       * * `void rawseti(LuaState L, int index, LuaInteger i);` /v5.3
       * `int rawget (lua_State *L, int index);` /v5.3
       * * `void rawget(LuaState L, int index);` /v5.1; v5.2
       * `int rawgeti(LuaState L, int index, LuaInteger n);` /v5.3
       * * `void rawgeti(LuaState L, int index, int n);` /v5.1; 5.2
       * `int gettable(LuaState L, int index);` /v5.3
       * * `void gettable(LuaState L, int index);` /v5.1; 5.2
       * `int lua_type (lua_State *L, int index);` /v5.1; 5.2; 5.3
       * `void lua_getglobal (lua_State *L, const char *name);` /v5.1; 5.2
       * * `int lua_getglobal (lua_State *L, const char *name);` /v5.3
       * `void pop(LuaState L, int n);` /v5.1; 5.2; 5.3
       * `void pushinteger(LuaState L, LuaInteger n);` /v5.1; 5.2; 5.3
       * `int pushthread(LuaState L);` /v5.1; 5.2; 5.3
       * `void pushnil(LuaState L);` /v5.1; 5.2; 5.3
       * `int pcall(LuaState L, int nargs, int nresults, int errfunc);` /v5.1; 5.2; 5.3
       * `void lua_call (lua_State *L, int nargs, int nresults);` /v5.1; 5.2; 5.3
       
* CHANGED: Pseudo-indices for Lua5.1 now is part of LuaH.
* CHANGED: Additional Lua .ctor(string) - the LuaConfig now has only explicit conversions to avoid misunderstanding.