登录 注册
当前位置:主页 > 资源下载 > 49 > 将多个DLL整合为一个DLL

将多个DLL整合为一个DLL

  • 更新:2024-10-19 22:13:57
  • 大小:239KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C# - 后端
  • 格式:RAR

资源介绍

ILMerge 这个工具能把多个DLL合并成一个DLL。 开发打包方便多了。 多个DLL合并成一个DLL,把DLL合并到Exe中的解决方案 多个DLL合并成一个DLL,把DLL合并到Exe中的解决方案 开始-》运行 -》 "cmd" -> "cd C:\Program Files\Microsoft\ILMerge" 3:) 3.1、合并file1.dll、file2.dll到destination.dll    ILmerge /ndebug /target:dll /out:C:\destination.dll /log C:\file1.dll C:\file2.dll 注: 1:) 其中 "/out:C:\destination.dll" 为合并后的 dll目录及名称 2:) "C:\file1.dll C:\file2.dll " 为要合并的名称 3.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 注:    1:) 合并为exe时,myapp.exe 必须写在file1.dll、file2.dll 前面