I'd like to add an assembly redirect for some libraries used by only one area of my ASP.NET MVC app. Not to clutter to root application Web.config, I'd like to have these redirects in the Web.config of the area.
Is this possible? Adding the following code to the area's Web.config doesn't seem to have an effect (while working from the root Web.config):
<runtime>
<assemblyBinding>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Diagnostics.Tracing.EventSource" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.1.14.0" newVersion="1.1.14.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>