Converting C# resources to LUA

Hi,

I’ve created a sample project in C#. I know I should put the client/server and __resource in the resources folder, but I don’t know how convert my C# solution to .lua files so that I can run my script. Any help would be appreciated. Thank you!

Why convert it to Lua? You can just run your c# script after compiling, just compile your script and copy the dll file to your resource folder. Make sure the extension is .net.dll and add to your __resource.lua for example

client_script "yourdll.net.dll"
server_script "yourserver.net.dll"