I'm going through some problems while learning to work with C #, more specifically with Asp Net MVC.
I saw a configuration snippet in Web.config
that left me a bit confused, namely:
<compilation debug="true" targetFramework="4.6.2"/>
<httpRuntime targetFramework="4.5"/>
As you can see, it looks like each one has targetFramework
different settings.
I'd like to know:
- What is the difference between
compilation
andhttpRuntime
? - What does each of these settings affect, in the case of the
targetFramework
?