我无法更改 IIS 6 中的目标 .NET Framework

发布于 2024-07-09 15:54:37 字数 184 浏览 5 评论 0原文

我们在当前项目中使用的特定测试系统上禁用了针对另一个版本的 .Net Framework 的选项。

我已尝试以下操作,但没有成功:

  • 终止所有 W3WP.EXE 进程
  • 重新启动 IIS 服务
  • 远程调试已从框中删除。

只是希望得到一些指点。

The option to target another version of the .Net Framework is disabled on a particular test system we are using on a current project.

I have tried the following without success:

  • Killing all W3WP.EXE processes
  • Restarting the IIS service
  • Remote Debugging has been removed from the box.

Just hoping for some pointers.

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

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

发布评论

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

评论(4

风吹过旳痕迹 2024-07-16 15:54:37

我认为如果您在安装.net之后安装iis,就会发生这种情况。 只需使用前面解释的 aspnet_regiis.exe 即可。

I think that this happens if you install the iis after the .net installation. Just use the aspnet_regiis.exe as explained before.

孤单情人 2024-07-16 15:54:37

您确定您问的是正确的问题吗?

没有新的 .NET 运行时版本作为目标。 如果您有 3.0 或 3.5 框架,您的 IIS 在运行时仍将显示 2.0,因为 3.0 和 3.5 仅在框架类和编译器方面与 2.0 应用程序不同!

您应该只在 IIS 配置中看到 1.X 和 2.0 框架。

编辑:目标切换仅在编译应用程序时发生。 因为 2.0、3.0 和 3.5 都运行在同一个 .NET 运行时环境 2.0 (VM) 上。
您仍然需要安装其他框架,因为它们的 API 不同,但它们都在相同的中间语言指令集上运行。

Are you sure you are asking the right question?

There is no new .NET Runtime version to target. If you have a 3.0 or 3.5 Framework your IIS will still display 2.0 as it's runtime because 3.0 and 3.5 differ only in Framework classes and compiler from a 2.0 application!

You should only see 1.X and 2.0 frameworks in your IIS configuration.

Edit: Target switching only happens when your compile your application. Because 2.0, 3.0 and 3.5 all run on the same .NET Runtime Environment 2.0 (VM).
You still need to have the additional frameworks installed because their API differs, but all run on the same intermediate language instruction set.

画骨成沙 2024-07-16 15:54:37

IIS 中是否有 ASP.net 服务(允许)

无论如何,您可以使用一些 vbscript 来更改 .net 版本。

Do you have ASP.net Serveice (Allowed) in IIS

In anyway, you can use some vbscript to change the .net version.

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