IIS Express 和 ASP.NET 2.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
/clr
开关与/site
开关一起使用(编辑位于
%userprofile%\my Documents\iisexpress\config\
中的applicationhost.config
并将 applicationPool 的 managedRuntimeVersion 设置为所需值) 。如果您已经安装了WebMatrix,则可以通过UI 来完成。
1. 打开WebMatrix
2.打开站点
3. 单击“设置”选项卡
4.选择.net框架版本
/clr
switch with/site
switch(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
您可以使用 /clr 开关,例如:/clr v2.0
检查此链接:
You can use the /clr switch e.g: /clr v2.0
Check this link: