在 .net 2 计算机上部署 .net 4 应用程序
我们的组织仅在桌面上运行 .net 2.0。将所有计算机升级到 .net 4.0 会很好,但这不会发生。 我希望使用 .net 4.0 功能。
有没有办法将 .net 4.0 运行时库静态链接到我的 .net 4.0 可执行文件中,以便它们在 .net 2.0 环境中运行?
Our organisation only runs .net 2.0 on desktops. It would be nice to upgrade all machines to .net 4.0, but that is not going to happen.
I wish to use .net 4.0 features.
Is there a way to statically link .net 4.0 runtime libraries into my .net 4.0 executables so they will run on a .net 2.0 environment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以防万一马克的评论不够明确:根本不可能。 .NET 4.0 中更改了程序集元数据格式,2.0 CLR 不知道如何读取它。您可以在 2.0 RTM 和 3.5 SP1 之间的任何 .NET 版本中运行 2.0 版本的 CLR。
使用安装项目进行修复是微不足道的,但它确实会妨碍员工采取“我喜欢我所知道的”态度。打破蛋壳是一个政治问题,而不是一个编程问题。祝你好运,造成伤害。
Just in case Marc's comment wasn't explicit enough: no way in hell. The assembly metadata format was changed in .NET 4.0, the 2.0 CLR doesn't know how to read it. You got the 2.0 version of the CLR running in any .NET version between 2.0 RTM and 3.5 SP1.
It is trivial to fix with a Setup project, but it certainly does get in the way of staff that takes the "I like what I know" attitude. Breaking through that egg shell is a political problem, not a programming problem. Good luck doing the damage.