When upgrading .net framework of the web app, we right click the project, and increment the target framework.
However, in web.config, this only changes the compilation targetFramework
<compilation targetFramework="4.8" />
It does not change the httpRuntime targetFramework
<httpRuntime targetFramework="4.5.2" />
Are we suppose to manually update the httpRuntime targetFramework?
Why does Microsoft want us to compile in one framework and run in another framework.