我正在尝试使用mono编译一个C#应用程序,该应用程序使用linux的TPL。该应用程序是使用VS在windows上构建的。我正试图通过gmcs编译cs类。然而,我得到了这个错误:
gmcs Main.cs FileUtil.cs BH.cs
BH.cs(6,24): error CS0234: The type or namespace name `Tasks' does not exist in the
namespace `System.Threading'. Are you missing an assembly reference?
Main.cs(17,24): error CS0234: The type or namespace name `Tasks' does not exist in the
namespace `System.Threading'. Are you missing an assembly reference?
BH.cs(6,24): error CS0234: The type or namespace name `Tasks' does not exist in the
namespace `System.Threading'. Are you missing an assembly reference?
Compilation failed: 3 error(s), 0 warnings
有什么建议吗?
gmcs
的目标是2.0 corlib。请尝试使用mcs
。