如何将已加载的库添加到Mono?

时间:2019-10-05 20:09:37

标签: c# linux mono sfml

我正在C#for Linux上创建sfml项目。下载适用于C#和Linux的SFML之后,然后在文件/usr/mono/lib/config中添加下一个字符串:

<dllmap dll "i:SFML.Window.dll"
        target = "libsfml-window.so.2.5" os = "!windows"/>

<dllmap dll "i:SFML.Graphics.dll"
        target = "libsfml-graphics.so.2.5" os = "!windows"/>

使用mcs Program.cs和Mcs打印进行编译:

The type or namespace name `SFML' could not be found. Are you missing an assembly reference?

在配置文件mono中要写什么?查找Linux库的.so文件的完整路径以及sfml的.dll文件的完整路径?还是我错过了什么?

0 个答案:

没有答案