I recently moved from Windows 7 and Visual Studio to Linux Mint and have been trying to get projects working in MonoDevelop, but kept running into a whole bunch of issues so I decided to just try to start from scratch and pull in what I previously wrote later.
I should note that I have diligently tried following advice on previous posts regarding setting up config files to point to .so files from .dll libraries, but was not successful as the error said:
Found conflicts between different versions of the same dependent assembly. Please set the "AutoGenerateBindingRedirects" property to true in the project file. - which I cannot find.
This is what one of my config files loo like:
sfml.graphics.dll.config&#65279;<?xml version="1.0"?>
<configuration>
<dllmap os="windows" dll="csfml-graphics-2" target="csfml-graphics-2.dll"/>
<dllmap os="linux" dll="csfml-graphics-2" target="libcsfml-graphics.so.2.2"/>
</configuration>
So I am trying to get a simple C# or VB.NET Hello World application up and running with MonoDevelop and SFML, yet keep running into issues with the references, either the .dll files pointing to .so files, or trying to use the SFML.NET package. I have tried so many things it would be difficult to list them all and their errors trying to piece something together.
So I really hate to ask, but does anyone have a working hello world project they would be willing to share that works with MonoDevelop on Linux?
I am just so lost on getting anything working on this OS.