迁移到 .NET 4 时,Windows 要求用户启用 .NET 3.51

发布于 2024-11-29 18:55:23 字数 339 浏览 1 评论 0原文

我正在使用 Visual Studio 2010 将一个相当大的项目从使用 .NET 3.5 转换为 .NET 4。我确保每个项目文件上的目标框架设置都设置为目标 .NET 4。我还将第三方 dll 转换为 .NET 4或删除依赖项。但是,当我在 Windows 8 开发预览版上运行程序时,它总是弹出对话框,要求用户启用 .NET 3.51。我发现如果我使用 *.exe.config 文件,它将抑制该对话框。

如何检查是否错过了仍在使用 .NET 3.5 或更早版本引用的任何程序集?或者这是由其他问题引起的? *.exe 清单文件是否影响 .NET 运行时版本?

如果您知道出了什么问题或遇到类似的情况,请提供帮助。提前致谢。

I'm converting a fairly large project from using .NET 3.5 to .NET 4 using Visual Studio 2010. I made sure the Target Framework setting on each project file was set to target .NET 4. I also converted third party dlls to .NET 4 or removed the dependancies. However, when I run my program on Windows 8 dev preview, it always pops up dialogs that asks user to enable .NET 3.51. I found that if I use an *.exe.config file it will suppress the dialog.

How do I check if I missed any assemblies that are still using .NET 3.5 or older references? Or is this caused by some other problem? Does *.exe manifest files affect .NET runtime version?

Please help if you have any idea what is wrong or you ran into something similar. Thanks in advance.

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

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

发布评论

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

评论(1

や莫失莫忘 2024-12-06 18:55:23

根本原因很可能是 Windows 8 预览版中的以下原因之一:

  1. 当表示“4.0”时抛出“需要安装 3.5.1”
  2. 使用一些 3.5.1 程序集作为 UI 位,无论您在
  3. Windows 8 中编写了什么默认值3.5.1(缺少配置==失败的原因?) - 最有可能是暂时在操作系统中硬编码的东西

据您的描述,我猜#3。只要您使用的是非 RTMed 操作系统,我敢打赌这里的人们将无法找到一些问题。

Root cause is most likely one of the following in Windows 8 Preview:

  1. Throws out "need to install 3.5.1" when it means "4.0"
  2. Uses some 3.5.1 assemblies for UI bits regardless of what you have programmed in
  3. Windows 8 defaults to 3.5.1 (missing config == reason to fail?) - most likely something hard coded in the OS temporarily

As far as your description, I would guess #3. As long as you are playing with a non-RTMed OS, I would bet there are some issues that people here will not be able to track down.

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