0

我想在单声道中进行一些错误修复。我在我的 openSuse 上安装了单声道,并从 github 下载单声道源代码。然后我想用这个命令构建 System.Configuration 项目:

xbuild System.Configuration-net_4_5.sln

并收到 31 个错误,其中大部分是这样的

error CS0518: The predefined type 'System.Object' is not defined or imported

我也收到以下警告:

warning : ProjectReference '..\corlib\corlib-net_4_5.csproj' not found, neither by guid 'some guid' nor by project file name 'path to project'

这个项目确实存在于这个位置。怎么了?谢谢。

4

1 回答 1

1

您必须更改代码,然后按照如何从源代码编译 Mono 的说明重新编译整个 Mono。您无法构建单个项目,因为“xbuild”无法正确解析引用的项目。

于 2013-09-08T13:09:35.457 回答