.NET 2.0 项目中的 .NET 1.1 程序集:是否需要 .NET 1.1?
我正在将项目从 1.1 升级到 3.5。
还有一些对 .NET 1.1 程序集的参考。
问题是:
我现在是否需要在部署的计算机上同时安装 .NET 1.1 和 2.0 (3.5),还是可以在没有 1.1 的情况下运行?
干杯,
德米特里。
I am upgrading project from 1.1 to 3.5.
There are some references left to .NET 1.1 assemblies.
The question is:
Do I have the requirement now to have both .NET 1.1 and 2.0 (3.5) on the deployed machine or it can be run without 1.1?
Cheers,
Dmitriy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在引用程序集的特定版本(即特定版本在引用的属性中设置为 true),那么是的,您将需要两者。
如果您没有引用特定版本,那么不,您将不需要两者,并且您的应用程序应该能够使用 3.0 程序集(尽管您不专门使用 3.0 进行测试来抓住机会!)
If you are referencing a specific version of the assembly (i.e. Specific Version is set to true in the properties of the references) then yes, you will need both.
If you are not referencing specific versions, then no, you will not need both, and your application should be able to use the 3.0 assemblies (although you take your chances by not testing it specifically with 3.0!)