neolithos / neolua

A Lua implementation for the Dynamic Language Runtime (DLR).
https://neolua.codeplex.com/
Apache License 2.0
466 stars 76 forks source link

NeoLua without DLL (static / embedded in C#) #130

Closed yuppox closed 2 years ago

yuppox commented 3 years ago

NeoLua Version: 5.3

If I wanted to "embed" this in a C# application, would it be difficult to import the code, rather than requiring a DLL?

It seems to depend on a "Resources.resx" file. Are there other things it would need?

neolithos commented 3 years ago

I always use the nuget package for my projects.

But there are tools for .net to pack all assemblies in one pe-file. Maybe this is easier. But I never tried.

PatrickKursawe commented 3 years ago

Not actively using it, but this here: https://github.com/Fody/Costura could do the trick for @yuppox .