I am starting a project and trying to get the server going first. I need to be able to build and run it on my mac. I installed the classic client on windows machine and moved the files over (stygian abyss). After installing mono and running make and being prompted for the game files directory, I am seeing the below.

Code:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.TypeInitializationException: The type initializer for 'Server.SpawnArea' threw an exception. ---> System.BadImageFormatException: Method has no body

Looking it up, seems to be a thing related to C# versions ? I am no expert in C# and was wondering if anyone knew how to fix this.

full terminal output trying to run make: https://pastebin.com/ytRN0yEp
 
You have to

Code:
ln -s /Library/Frameworks/Mono.framework/Versions/Current/lib/libgdiplus.dylib .

in the root ServUO folder. This is something that came about in mono + osx a few years ago it looks. Should add this to the github installation steps.
 
Back