2

我正在尝试将用 C# 编写的 .NET 应用程序移植到 linux 中。
使用 MoMa 工具进行的兼容性测试表明该应用程序是兼容的。我使用 Visual Studio 2010 编译了代码,并将生成的 .exe 文件复制到我的 Ubuntu VM(运行 10.04 LTS)。

我已经安装了带有 badgerport 源的单声道(来自http://badgerports.org/lucid.html)。我看到 /usr/lib/mono 目录中有 4.0 库:

user@ubuntu:~$ ls -l /usr/lib/mono
total 52
drwxr-xr-x   3 root root  4096 2012-08-27 07:15 2.0
drwxr-xr-x   3 root root  4096 2012-08-27 07:15 3.5
drwxr-xr-x   3 root root 12288 2012-08-27 07:15 4.0
drwxr-xr-x   2 root root  4096 2012-08-27 07:14 compat-2.0
drwxr-xr-x 145 root root 12288 2012-08-27 07:15 gac
drwxr-xr-x   3 root root  4096 2012-08-27 07:15 mono-configuration-crypto
drwxr-xr-x   2 root root  4096 2012-08-27 07:15 monodoc
drwxr-xr-x   3 root root  4096 2012-08-27 07:15 xbuild
drwxr-xr-x   3 root root  4096 2012-08-27 07:15 xbuild-frameworks

当我查看 mono 的手册页时,我看到了 Mono 2.5。
mono -V 返回以下内容。

user@ubuntu:~$ mono -V
Mono JIT compiler version 2.10.8.1 (Debian 2.10.8.1-1~dhx1~lucid1)
Copyright (C) 2002-2011 Novell, Inc, Xamarin, Inc and Contributors. www.mono-project.com
TLS:           __thread
SIGSEGV:       altstack
Notifications: epoll
Architecture:  x86
Disabled:      none
Misc:          softdebug 
LLVM:          supported, not enabled.
GC:            Included Boehm (with typed GC and Parallel Mark)

这是我尝试运行应用程序时的输出。

user@ubuntu:~$ mono MyApplication.exe 

Unhandled Exception: System.TypeLoadException: A type load exception has occurred.
at MyApplication.ConsoleRunner..ctor () [0x00000] in <filename unknown>:0 
at MyApplication.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.TypeLoadException: A type load exception has occurred.
at MyApplication.ConsoleRunner..ctor () [0x00000] in <filename unknown>:0 
at MyApplication.Program.Main (System.String[] args) [0x00000] in <filename unknown>:0 

对正在发生的事情有什么见解,我能做些什么来解决它?不幸的是,由于其他开发限制,我仅限于使用 Ubuntu 10.04。

4

1 回答 1

3

您绝对不必使用 Mono 编译器进行编译,至少不是设计使然。尝试使用 运行MONO_LOG_LEVEL="debug" mono your_software.exe,您将看到尝试查找程序集和其他可能有用的信息。并把它放在这里;)

于 2012-08-28T09:44:25.690 回答