File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Lua.NET
22![ Logo] ( https://raw.githubusercontent.com/tilkinsc/Lua.NET/main/Lua.NET.Logo.png )
33
4- C# .NET Core 7.0 Lua bindings and helper functions.
4+ C# .NET Core 7.0
5+ Lua.NET contains full bindings to Lua5.1.5, Lua5.2.4, Lua5.3.6, Lua.5.4.6 and LuaJIT
56
67https://github.com/tilkinsc/Lua.NET
78Copyright © Cody Tilkins 2022 MIT License
@@ -24,7 +25,7 @@ C# is liable to GC your delegates otherwise.
2425
2526# Examples
2627
27- Example Usage Lua5.4.4 :
28+ Example Usage Lua5.4.6 :
2829``` C#
2930// test1.csproj
3031// <PropertyGroup>
@@ -114,6 +115,10 @@ Example Usage NativeAOT DLL Library:
114115// <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
115116// <PublishAot>true</PublishAot>
116117// </PropertyGroup>
118+ //
119+ // dotnet publish -r win-x64 -c Release
120+ // This will emit test3.dll inside of bin/.../native and bin/.../publish
121+ // I use the publish one
117122
118123using System .Runtime .InteropServices ;
119124using LuaJIT ;
@@ -157,7 +162,7 @@ using static LuaJIT.Lua;
157162
158163namespace test4 ;
159164
160- public class Test1
165+ public class Test4
161166{
162167
163168 public static void Main (string [] args )
You can’t perform that action at this time.
0 commit comments