I have a C# script inside a Unity project. I'd to both keep using the script in this Unity project, and to use it to compile a non-Unity Linux daemon.
So I would basically need to create a new Main
for this Linux daemon, and include this script, without using any of Unity's classes. Compiling it using Unity anyway is currently not an option.
However I'm a bit confused on how to do such a thing. How am I supposed to do that?