问题
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