Skip to content

Commit 9fcce60

Browse files
authored
Merge pull request #6 from tilkinsc/dev
Changes to bump new version
2 parents 5fe5f89 + 2f1dd78 commit 9fcce60

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
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

67
https://github.com/tilkinsc/Lua.NET
78
Copyright © 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
118123
using System.Runtime.InteropServices;
119124
using LuaJIT;
@@ -157,7 +162,7 @@ using static LuaJIT.Lua;
157162

158163
namespace test4;
159164

160-
public class Test1
165+
public class Test4
161166
{
162167

163168
public static void Main(string[] args)

0 commit comments

Comments
 (0)