Configuring .NET Framework 4.5.2 in IIS 8.0

2019-01-24 17:53发布

问题:

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