0

我是 C# 编程新手。我正在尝试编译一个需要 mono cecil 的 C# 程序

这是我正在尝试编译的代码我不知道如何添加参考...有人可以帮我解决这个问题吗?

using System;
using Mono.Cecil;
using Mono;

public class Program {
  public static void Main() {
    string infile = "in.exe";
    string outfile = "out.exe";
    Guid guid = Guid.Parse("12345678-1234-1234-1234-1234567890ab");
    AssemblyDefinition asm = AssemblyDefinition.ReadAssembly(infile);
    ModuleDefinition mod = asm.MainModule;
    mod.Mvid = guid;
    asm.Write(outfile);
  }
}

使用 mcs 编译程序时出现以下错误

error CS0234: The type or namespace name 'Cecil' does not exist in the namespace 'Mono'.Are you missing an assembly reference?

我在 /usr/lib/mono/4.0 和 /usr/lib/mono/2.0 中找不到 Mono.Cecil.dll。Mono.Cecil.dll 仅存在于 /usr/lib/monodevelop/bin/

如果我遗漏了什么,请告诉我?我该如何摆脱这个错误???

问候

普利燕

4

1 回答 1

3

您需要使用 、 或 选项告诉编译器在-r哪里-pkg可以-lib找到Mono.Cecil.dll

始终有效的解决方案是.dll从源代码构建:

git clone https://github.com/mono/cecil.git
cd cecil
xbuild /property:Configuration=net_4_0_Release

您还可以使用其他配置(例如,net_4_0_Debug)。检查.slnor.csproj文件的值。您将Mono.Cecil.dllobj子目录中找到。然后,您可以将该库复制到您想要的任何位置并使用 , 进行编译-r:/path/to/Mono.Cecil.dll-lib:/path/to/libdirectory -r:Mono.Cecil.dll或者如果您正在使用 MonoDevelop,请添加对该库的引用(在 MonoDevelop 中,您也应该能够直接引用该项目)。

Cecil 通常也可以通过该pkg-config机制获得;但是,该cecil.pc文件似乎配置错​​误。通常,仅使用-pkg:cecil就足够了,但这似乎已被破坏,您必须使用以下内容:

dmcs -r:`pkg-config --variable=Libraries`

为了获得Mono.Cecil.dllGAC 的完整路径。

此外,由于 mono 在 Debian 下被拆分为多个包,如果上述方法不起作用,您可能需要安装额外的库(我目前不知道 Cecil 是否是核心包的一部分)。

于 2013-07-22T17:02:43.113 回答