0

我花了相当多的时间试图用单声道制作一个捆绑包。我可以运行程序就好了

mono program.exe

但是当我说

 mkbundle --deps -o test test.exe

它输出

OS is: Linux
Sources: 1 Auto-dependencies: True
   embedding: /home/chris/Documents/Depot/test/bin/Release/test.exe
   embedding: /usr/lib/mono/1.0/mscorlib.dll
   embedding: /usr/lib/mono/gac/System.Core/3.5.0.0__b77a5c561934e089/System.Core.dll
   embedding: /usr/lib/mono/gac/System/1.0.5000.0__b77a5c561934e089/System.dll
   embedding: /usr/lib/mono/gac/System.Xml/1.0.5000.0__b77a5c561934e089/System.Xml.dll
Compiling:
as -o temp.o temp.s 
cc -ggdb -o test -Wall temp.c `pkg-config --cflags --libs mono`  temp.o
Done

当我尝试运行它时,它说

** (test.exe:21988): WARNING **: The class System.Collections.Generic.List`1 could not be loaded, used in mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089

Unhandled Exception: System.TypeLoadException: A type load exception has occurred.

我注意到它正在从 1.0 文件夹中复制 mscorlib.dll。我尝试将 2.0 版放在此文件夹中,它解决了通用列表类型加载错误,但现在我遇到了秒表和信号量类型加载错误。

如何制作包含我需要的所有这些类型的捆绑包?

4

1 回答 1

3

您似乎想要mkbundle2,它链接到 2.0 运行时。

于 2010-03-01T11:31:16.993 回答