我有一个exe和一堆dll,但它们没有强大的命名。
exe需要具有不同版本的其中一个dll的特定版本,因此在启动exe时会发生错误。
我没有此dll的源代码来更改其汇编版本,因此可以在外部更改此dll的版本或其引用吗?
我用dll尝试了“ILMerge.exe Foo.dll /ver:1.2.3.4 /out:Foo2.dll”,但生成的dll的版本保持不变。
有什么想法吗?
谢谢,
答案 0 :(得分:4)
您可以使用Mono.Cecil(https://www.nuget.org/packages/Mono.Cecil/)轻松完成此操作 使用Mono.Cecil打开程序集并查找AssemblyFileVersionAttribute并进行必要的更改,然后保存程序集(dll)并使用修改后的文件。
为了更新exe,你可以做一些非常类似的事情来更新依赖(汇编)dll版本号。
见下文(更新后包含代码示例以更改程序集的版本(dll)以及exe中的元数据):
void Main(){
UpdateDll();
UpdateExe();
}
static void UpdateExe(){
var exe = @"C:\temp\sample.exe";
AssemblyDefinition ass = AssemblyDefinition.ReadAssembly(exe);
var module = ass.Modules.First();
var modAssVersion = module.AssemblyReferences.First(ar => ar.Name == "ClassLibrary1");
module.AssemblyReferences.Remove(modAssVersion);
modAssVersion.Version = new Version(4,0,3,0);
module.AssemblyReferences.Add(modAssVersion);
ass.Write(exe);
}
static void UpdateDll()
{
String assemblyFile = @"C:\temp\assemblyName.dll";
AssemblyDefinition modifiedAss = AssemblyDefinition.ReadAssembly(assemblyFile);
var fileVersionAttrib = modifiedAss.CustomAttributes.First(ca => ca.AttributeType.Name == "AssemblyFileVersionAttribute");
var constArg = fileVersionAttrib.ConstructorArguments.First();
constArg.Value.Dump();
fileVersionAttrib.ConstructorArguments.RemoveAt(0);
fileVersionAttrib.ConstructorArguments.Add(new CustomAttributeArgument(modifiedAss.MainModule.Import(typeof(String)), "4.0.3.0"));
modifiedAss.Name.Version = new Version(4,0,3,0);
modifiedAss.Write(assemblyFile);
}