IIS Express 和 ASP.NET 2.0

发布于 2024-10-15 22:16:47 字数 217 浏览 4 评论 0原文

对于 IIS 7.5 Express,我知道可以使用 /clr:v2.0 命令行参数从命令行将站点的 CLR 版本设置为 2.0。对于我的一生,我找不到解释如何在使用 /site 参数时指定它的文档。我本以为它会出现在 applicationhost.config 文件中,但如果我能找到它就好了。由于 CLR 版本是特定于网站的,我本以为它会进入该部分,但是......耸耸肩。

感谢您提供的任何帮助。

For IIS 7.5 Express, I understand that I can set the CLR version to 2.0 for a site from the command line using the /clr:v2.0 command line argument. For the life of me, I cannot find the documentation that explains how to specify it when using the /site argument. I would have thought it goes in the applicationhost.config file but damned if I can find it. Since the CLR version is website specific I would have thought it went into the section but...shrug.

Thanks for any help you can provide.

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

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

发布评论

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

评论(2

可可 2024-10-22 22:16:47
  1. 您不能将 /clr 开关与 /site 开关一起使用
  2. 您可以将 clr 版本设置为应用程序,但不能设置为站点(一个站点可以有多个应用程序)
  3. 将 clr 版本设置为应用程序,更改应用程序的 applicationPool 的 ma​​nagedRuntimeVersion
    (编辑位于 %userprofile%\my Documents\iisexpress\config\ 中的 applicationhost.config 并将 applicationPool 的 ma​​nagedRuntimeVersion 设置为所需值) 。

如果您已经安装了WebMatrix,则可以通过UI 来完成。
1. 打开WebMatrix
2.打开站点
3. 单击“设置”选项卡
4.选择.net框架版本

  1. You CANNOT use /clr switch with /site switch
  2. You can set clr version to an application, but not a site (A site can have multiple applications)
  3. To set clr version to an application, change the application's applicationPool's managedRuntimeVersion
    (Edit the applicationhost.config located in %userprofile%\my documents\iis express\config\ and set the applicationPool's managedRuntimeVersion to desired value).

If you have installed WebMatrix, you can do it through UI.
1. Open WebMatrix
2. open site
3. Click Settings tab
4. select the .net framework version

漆黑的白昼 2024-10-22 22:16:47

您可以使用 /clr 开关,例如:/clr v2.0

检查此链接:

http://learn .iis.net/page.aspx/870/running-iis-express-from-the-command-line/

You can use the /clr switch e.g: /clr v2.0

Check this link:

http://learn.iis.net/page.aspx/870/running-iis-express-from-the-command-line/

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