1、合并file1.dll、file2.dll到destination.dll  
ILmerge /ndebug /target:dll /out:C:\destination.dll /log C:\file1.dll C:\file2.dll 


2、合并file1.dll、file2.dll以及myApp.exe到newApp.exe  
ILmerge /ndebug /target:winexe /out:C:\newApp.exe /log C:\myapp.exe C:\file1.dll C:\file2.dll 

注意:合并为exe时,myapp.exe必须写在file1.dll、file2.dll前面

 

ILmerge文件下载 http://www.microsoft.com/downloads/details.aspx?FamilyID=22914587-b4ad-4eae-87cf-b14ae6a939b0&DisplayLang=en

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2021-08-20
  • 2022-03-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-16
猜你喜欢
  • 2022-02-07
  • 2021-05-26
相关资源
相似解决方案