参考3.5从2.0应用程序组装?
我有一个针对 .NET 3.5 的程序集。
我有一个针对 .NET 2.0 的应用程序,想知道从 2.0 应用程序引用 3.5 程序集是否会遇到任何问题。
我知道 IL 应该是相同的,所以我假设它会起作用,但想听听其他尝试过此操作的人的一些经验。
运行时环境将安装 2.0 和 3.5。
I have an assembly that is targeted for .NET 3.5.
I have an application targeted for .NET 2.0 and wonder if I should have any trouble referencing the 3.5 assembly from the 2.0 application.
I understand that the IL is supposedly the same, so I'm assuming that it will work, but would like to hear some experiences from others who have tried this.
The runtime environment will have both 2.0 and 3.5 installed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里没有问题。 只有一个运行时版本执行该应用程序。 .NET框架v2.0。
There's no problem. There is only one runtime version executing the app. .NET Framework v2.0.
但是,在部署 .net2.0 应用程序时,系统将提示您的用户安装 .net3.5(因为引用了 .net 3.5 程序集)。
However - when deploying your .net2.0 application, your user will be prompted to install .net3.5 (as there is a .net 3.5 assembly referenced).