特定于 .Net 版本的 DLL?

发布于 2024-10-29 02:33:52 字数 201 浏览 0 评论 0原文

当您将 .Net 程序作为已编译的 .EXE 发布时,它特定于特定版本的 .Net(以及 Mono 的相应版本) - 不是“4.0 或更高版本”,而是确切的 4.0。

这同样适用于编译的 DLL 吗?

假设您的程序需要一些第三方库,您将其作为 DLL 提供。如果您想升级程序以使用更高版本的 .Net/Mono,是否还必须构建或获取相应更新版本的 DLL?

When you ship a .Net program as a compiled .EXE, it's specific to a particular version of .Net (and corresponding version of Mono) - not e.g. "4.0 or later" but exactly 4.0.

Does the same applied to compiled DLLs?

Suppose your program needs some third-party libraries, which you ship as DLLs. If you then want to upgrade your program to use a later version of .Net/Mono, do you have to build or acquire correspondingly updated versions of the DLLs also?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦÷微暖 2024-11-05 02:33:52

.NET 的每个新版本都可以引用旧版本中创建的程序集(所有 BCL 程序集除外)。
您不需要获取更新版本的第三方库。

例如,如果使用 .NET 4 构建项目,则可以引用使用 .NET 3.5(MyAssembly.dll 版本 1.0.0.0)创建的库,但不能引用 System.Xml.dll 版本 3.5.0.0。您必须引用 System.Xml.dll 版本 4.0.0.0

Every new version of .NET can reference assemblies created in older version except all the BCL assemblies.
You dont need to acquire newer versions of third-party libraries.

For example if you build a project with .NET 4 you can reference a library created with .NET 3.5 (MyAssembly.dll version 1.0.0.0) but you cannot reference System.Xml.dll version 3.5.0.0. You will have to reference System.Xml.dll version 4.0.0.0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文