Hey, I'm having some issues that have to do with running an SFML 2.0 .NET application with Mono on OS X.
I've downloaded the SFML .NET source code, complied it, and referenced "sfmlnet-graphics-2.0.dll", "sfmlnet-window-2.0.dll", and "sfmlnet-audio-2.0.dll" in my project. I tried adding the "csfml-*-2.dll" dlls from the "exlibs" to the folder where the project executable is, but I always get a "DllNotFound" relating to the csfml dlls. So I tried downloading the C MAC version of SFML 2.0 to replace them. I replaced the "csfml-*-2.dll" libraries with their "libcsfml-*-2.0" dylib counterparts. I then created config files for each "sfmlnet-*-2.0" dll like so:
E.g: sfmlnet-graphics-2.0.dll.config<configuration>
<dllmap dll="csfml-graphics-2" target="libcsfml-graphics-2.0.dylib" />
</configuration>
But to no avail. I get "DllNotFound" exceptions for "libcsfml-*-2.0.dylib". Is there anyway to fix this/get SFML .NET working with mono on OS X? Thanks