Configuring .NET Framework 4.5.2 in IIS 8.0

江枫思渺然 提交于 2019-12-18 04:20:33

问题


In my Windows Server 2012, I have installed .NET Framework 4.5.2, but it is not listing in IIS when I tried to change one application pool's .NET Framework.


回答1:


The application pool should be set to .net 4.0, that includes all updates like 4.5.1 and 4.5.2

All other settings are through config, for example:

  <system.web>
      <compilation debug="true" targetFramework="4.5.1" />
      <httpRuntime targetFramework="4.5.1" />
  </system.web>



回答2:


install Microsoft .NET Framework 4.5.2 Developer Pack https://www.microsoft.com/en-us/download/details.aspx?id=42637



来源:https://stackoverflow.com/questions/28562006/configuring-net-framework-4-5-2-in-iis-8-0

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!