Hi Laurent!
I downloaded SFML.net from
https://github.com/SFML/SFML.Net(BTW it's not that easy to find as it's not linked anywhere!)
Then I open the solution in Monodevelop 2.8
When it tried compiling, there was an error with missing Tao, so I installed Tao and added it to references. After that it compiled itself without any errors. But it's very strange as the whole SFML.net solution compiled itself in 2 seconds and the output libraries are like 35 KB in size. Is that because they are bindings?
Also, when I run any of the examples, a window apprears "Program window.exe stopped working".
EDIT: OK, i copied all the files in Extlibs folder into the executable folder and now everything runs fine. It's been a long time since I used SFML, I can see that what used to be called IMAGE is now called TEXTURE. I'm missing some docs. Can I find any SFML.net documentation? I think the monodevelop didn't generate any doc for me, as the doc folder contains only some sample code.
Also, in the example there are some bits of code that I don't understand, like:
RenderWindow window = (RenderWindow)sender;
What does this line mean really? Thanks for help.