让Release生成配置自动调用ILRepack将所有程序集混合到一个文件
作者:V君 发布于:2016-7-9 18:18 Saturday 分类:折腾手记
TL;DR?
先在 NuGet 添加 ILRepack 包,然后填上生成事件脚本,它在项目属性 - 生成事件 - 后期生成事件命令行,贴上类似下面的3行:
if $(ConfigurationName) == Release if not exist "$(TargetDir)Packed" md "$(TargetDir)Packed"
if $(ConfigurationName) == Release $(ILRepack) /ndebug "/out:$(TargetDir)Packed\$(TargetFileName)" "$(TargetPath)" LibRefence.dll
if $(ConfigurationName) == Release if exist "$(TargetDir)Packed\$(TargetFileName).config" del "$(TargetDir)Packed\$(TargetFileName).config"
每行前面相同的 if 用来确认当前是否以 Release 配置生成 (好像这是废话)。 要是M¥能给生成事件指定配置就不用写得这么繁琐了。
第一行:检查输出路径下是否有 Packed 文件夹,没有则创建。用来放我们混合好的输出。 这行可以直接拿去用。
第二行:调用 ILRepack,如果有引用程序集,需要加到后边,比如例子的引用程序集文件名 LibRefence.dll。可以参照 Update2 的命令自动获取所有 dll 文件名,用 !DLL_LIST! 代替即可。这行走完之后 Packed 底下就会得到 exe/config 文件了。
第三行:删除多余的 config 文件,如果不需要 config 文件,可以留下第三行。因为 ILRepack 会把配置文件自动带到输出目录。
注意:
这仅仅只是把程序集混合在一起,不带压缩。和 ILMerge 作用一样,不过用了更先进的 ILRepack。如果你想要压缩可以试试 Aio1ef 这货。
Update1 at 2017-10-16
路径用双引号括起来了, 一些同学可能喜欢在默认路径存放项目, 导致路径出现空格报错.
Update2 at 2018-02-06
获取 exe 旁边所有 dll 文件可以通过以下命令实现:
if $(ConfigurationName) == Release setlocal enabledelayedexpansion enableextensions
if $(ConfigurationName) == Release set DLL_LIST=
if $(ConfigurationName) == Release for %%x in ($(TargetDir)*.dll) do set DLL_LIST=!DLL_LIST! "%%x"
if $(ConfigurationName) == Release echo dlls: !DLL_LIST!
标签: 软件开发 C# 程序打包 VisualStudio
blogger
Google Web Translator
热门日志
随机日志
最新日志
最新评论
- V君
@Quartz:(出现)... - Quartz
怎么不见人了呢... - V君
@Soar:DHCP 协议相... - V君
@Soar:当然是非... - Soar
@V君:谢谢 有空... - Soar
搞一个 1230v3+B85... - V君
@Soar:另外,也可... - V君
@Soar:iscsi服务端... - Soar
难怪这么卡,尤其... - Soar
clone了源码,提示...
分类
存档
- 2024年5月(1)
- 2023年7月(1)
- 2023年5月(1)
- 2022年11月(1)
- 2022年10月(1)
- 2022年9月(1)
- 2022年8月(1)
- 2022年7月(1)
- 2022年6月(1)
- 2022年5月(2)
- 2022年4月(1)
- 2022年3月(1)
- 2022年2月(1)
- 2022年1月(1)
- 2021年12月(1)
- 2021年11月(1)
- 2021年10月(1)
- 2021年9月(1)
- 2021年8月(1)
- 2021年7月(1)
- 2021年6月(1)
- 2021年5月(1)
- 2021年4月(1)
- 2021年3月(1)
- 2021年2月(1)
- 2021年1月(1)
- 2020年12月(1)
- 2020年11月(1)
- 2020年10月(2)
- 2020年9月(1)
- 2020年8月(1)
- 2020年7月(1)
- 2020年6月(1)
- 2020年5月(1)
- 2020年4月(2)
- 2020年3月(3)
- 2020年2月(1)
- 2020年1月(1)
- 2019年12月(1)
- 2019年11月(1)
- 2019年10月(1)
- 2019年9月(1)
- 2019年8月(2)
- 2019年7月(1)
- 2019年6月(1)
- 2019年5月(1)
- 2019年4月(1)
- 2019年3月(1)
- 2019年2月(1)
- 2019年1月(2)
- 2018年12月(2)
- 2018年11月(1)
- 2018年10月(3)
- 2018年9月(4)
- 2018年8月(6)
- 2018年7月(4)
- 2018年6月(1)
- 2018年5月(2)
- 2018年4月(2)
- 2018年3月(3)
- 2018年2月(1)
- 2018年1月(1)
- 2017年12月(1)
- 2017年10月(2)
- 2017年9月(1)
- 2017年8月(2)
- 2017年7月(1)
- 2017年6月(5)
- 2017年5月(2)
- 2017年4月(2)
- 2017年3月(3)
- 2017年2月(2)
- 2017年1月(2)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(3)
- 2016年9月(4)
- 2016年8月(2)
- 2016年7月(4)
- 2016年6月(3)
- 2016年5月(1)
- 2016年4月(4)
- 2016年3月(3)
- 2016年2月(1)
- 2016年1月(5)
- 2015年12月(4)
- 2015年11月(5)
- 2015年10月(1)
- 2015年9月(6)
- 2015年8月(4)
- 2015年7月(1)
- 2015年6月(6)
- 2015年5月(3)
- 2015年4月(3)
- 2015年3月(2)
- 2015年2月(1)
- 2015年1月(3)
- 2014年12月(1)
- 2014年11月(1)
- 2014年10月(1)
- 2014年9月(3)
- 2014年8月(1)
- 2014年7月(1)
- 2014年6月(1)
- 2014年5月(3)
- 2014年4月(1)
- 2014年3月(1)
- 2014年2月(2)
- 2014年1月(1)
- 2013年12月(2)
- 2013年11月(2)
- 2013年10月(1)
- 2013年9月(3)
- 2013年8月(14)
- 2013年7月(7)
- 2013年4月(1)
- 2013年3月(4)
- 2013年2月(6)
- 2013年1月(6)
- 2012年12月(8)
- 2012年11月(6)
发表评论: