3
I am going through some problems while learning to work with C#, more specifically with Asp Net MVC.
I saw a setup snippet on Web.config that left me a little confused, knowing:
<compilation debug="true" targetFramework="4.6.2"/>
<httpRuntime targetFramework="4.5"/>
As it is possible to notice, it seems that each one has configurations of targetFramework different.
I’d like to know:
- What’s the difference between
compilationandhttpRuntime? - What each of these settings affects, in the case of the option
targetFramework?