ILMerge 不适用于 .NET 1.1
我尝试合并两个 .NET 1.1 程序集并在应用程序中使用它们。应用程序编译期间发生异常:
错误 1 元数据文件 'c:\Source\ILMergeTest\App\Merged.dll' 无法打开 - '版本 1.1 不是兼容版本。' C:\Source\ILMergeTest\App\App\CSC App
Exception 与库内容无关。即使库为空,也会发生这种情况。
麻烦在哪里?
是否有合并 .NET 1.1 程序集的替代方法?
谢谢。
I try to merge two .NET 1.1 assemblies and use them in app. Exception occurs during app compilation:
Error 1 Metadata file 'c:\Source\ILMergeTest\App\Merged.dll' could not be opened -- 'Version 1.1 is not a compatible version.' C:\Source\ILMergeTest\App\App\CSC App
Exception isn't related with libs content. It occurs even if libs are empty.
Where is trouble?
Are there alternative ways to merge .NET 1.1 assemblies?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
/targetplatform
命令行开关。例如,
ILMerge.exe /targetplatform:v1.1
Use the
/targetplatform
command line switch.For example,
ILMerge.exe /targetplatform:v1.1