我编写了一个使用2个第三方dll的程序,我想使用ILMerge将两个dll合并为1个可执行文件。
我尝试过使用命令行:
ilmerge /target:winexe /out:final.exe normal.exe 3rd_party_dll_1.dll 3rd_party_dll_2.dll
但这会返回此错误:
`Could not load assembly from the location 'C:\Users\...' Skipping and processing trest of arguments. `
我是否遗漏了某些内容,或者这些dll是否可能无法合并?