如何将 .net 4.0 dll 添加到在 dotnet 3.5 上运行的项目中

发布于 2024-12-08 18:06:23 字数 130 浏览 0 评论 0 原文

我有一个在 .net Framework 4.0 中构建的类库。我想将其添加到 .net Framework 3.5 中构建的旧项目中。除了升级旧项目之外,还有什么方法可以做到这一点?如果您能告诉我如何将我的 dll 降级到 3.5,也会很有帮助

I have a class library build in .net framework 4.0. i want to add it to an old project build in .net framework 3.5 .. is there any way to do it other than upgrading the old project? also it will be helpful if you could tell me how to downgrade my dll to 3.5

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

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

发布评论

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

评论(2

只有影子陪我不离不弃 2024-12-15 18:06:23

您将无法在 .NET 3.5 进程中运行 .NET 4.0 DLL。

如果您有源代码,则可以通过更改项目的目标框架(在 Visual Studio 中或手动)将其转换为 .NET 3.5。如果源代码依赖于 .NET 4.0 特定功能,那么您必须对其进行更改才能与 .NET 3.5 一起使用。这是否可行取决于代码对.NET 4.0功能的依赖程度以及仅使用.NET 3.5是否可以达到相同的效果。

You won't be able to run the .NET 4.0 DLL in a .NET 3.5 process.

If you have the source code, then you can convert it to .NET 3.5 by changing the target framework of the project (either in Visual Studio or by hand). If the source code is relying on .NET 4.0 specific features then you will have to change it to work with .NET 3.5. Whether or not this is feasible depends on how heavily the code is relying on .NET 4.0 features and whether the same effect can be achieved using only .NET 3.5.

情未る 2024-12-15 18:06:23

您有 4.0 DLL 和 3.5 项目的源代码吗?如果是这样,您可以:

  1. Port &将 4.0 DLL 重建为 3.5
  2. 端口和将 3.5 项目重建为 .NET 4.0。
  3. 通过修改应用程序的配置来强制 3.5 项目在 4.0 CLR 上运行:

<前><代码><配置>;
<启动>



如果您选择选项 3,请务必彻底测试您的代码,因为您的代码可能会引用已更改行为的 API 和/或 API,并可能导致难以检测和修复的运行时损坏。

请务必阅读涵盖以下内容的文档 .NET 4.0 应用程序能够更好地处理为早期版本的 .NET 构建的组件。

现在开始为未来做好准备并重构代码以将所有核心业务逻辑推送到 .NET 可移植程序集,这将使您可以更轻松地在 Windows 桌面、Windows Metro 风格应用程序、Windows Phone 应用程序、Silverlight 应用程序、XBox 应用程序等中重用该代码

。HTH。

Do you have the source to both the 4.0 DLL and the 3.5 project? If so, your can:

  1. Port & rebuild the 4.0 DLL to 3.5
  2. Port & rebuild your 3.5 project to .NET 4.0.
  3. Coerce your 3.5 project to run on the 4.0 CLR by modifying your app's config:
<configuration>
  <startup >
    <supportedRuntime version="v2.0.50727" />
    <supportedRuntime version="v4.0" />
  </startup>
</configuration>

If you choose option 3, be sure to test your code thoroughly as your code may reference API's that have changed behavior and/or API's and may result in runtime breakage that's hard to detect and fix.

Be sure to read the documentation covering the ability of .NET 4.0 apps to better handle components built for earlier versions of .NET.

It's perhaps wise to start preparing now for the future and re-factoring your code to push all your core business logic into .NET Portable Assemblies which will make it easier to reuse that code in Windows Desktop, Windows Metro-style apps, Windows Phone apps, Silverlight apps, XBox apps, etc.

HTH.

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