我是Cecil类库的新手。发现cecil没有文档。我现在需要将CashCountingLibrary.dll
的程序集名称更改为LibCashCounter.dll
我怎样才能使用cecil?
注意:我需要实际操作而不是设计
答案 0 :(得分:2)
这是你需要的吗?
var assm = AssemblyDefinition.ReadAssembly("assemblyPath");
assm.Name = new AssemblyNameDefinition("newName", Version.Parse("1.0.0.0"));
assm.Write("newNameAssemblyPath");