Hey guys,
first of all, i read many topics in this forum & googled a lot about how to get
Mono and SFML.Net running.
But the only half-working solution is about installing csfml-
1.6-libs via
apt-get and using them. But I want to use SFML.Net 2.x.
I have Ubuntu 12.04, Mono 2.10.8.1 & MonoDevelop 2.8.6.3.
The steps I took:
After installing Mono & MonoDevelop, I opend a new Project and added the sfmlnet-graphics-2.dll
to my references.
Afterwards I was able to use the SFML commands in MonoDevelop. I also copied the csfml-graphics-2.dll
in the same folder where my prog.exe was.
Then I created a prog.exe.config/csfml-graphics-2.dll.config file and wrote the following in it:
<configuration>
<dllmap dll="csfml-graphics-2.dll" target="libcsfml-graphics-2.so.2" />
</configuration>
After that I added this file to my Project like this:
Now I wanted to compile my project, but I got a DllNotFoundException: "csfml-graphics-2 not found"
Does anybody know how to get thes dll's running with mono on linux?