如何将 .net 4.0 dll 添加到在 dotnet 3.5 上运行的项目中
我有一个在 .net Framework 4.0 中构建的类库。我想将其添加到 .net Framework 3.5 中构建的旧项目中。除了升级旧项目之外,还有什么方法可以做到这一点?如果您能告诉我如何将我的 dll 降级到 3.5,也会很有帮助
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您将无法在 .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.
您有 4.0 DLL 和 3.5 项目的源代码吗?如果是这样,您可以:
如果您选择选项 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:
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.