Estoy tratando de agregar
<location inheritInChildApplications="false">
a la aplicación web de mi padre web.config pero no parece estar funcionando.
La de mis padres web.config
tiene:
<configuration>
<configSections>
</configSections>
// 10 or so custom config sections like log4net, hibernate,
<connectionStrings>
</connectionStrings>
<appSettings>
</appSettings>
<system.diagnostics>
</system.diagnostics>
<system.web>
<webParts>
</webParts>
<membership>
</membership>
<compilation>
</compilation>
</system.web>
<location ..>
<system.web>
</system.web>
</location>
<system.webServer>
</system.webServer>
La aplicación web de mi hijo está configurada como una aplicación en IIS y hereda de la de los padres, lo web.config
que está causando problemas.
¿Dónde exactamente debo colocar el
<location inheritInChildApplications="false">
entonces ignora todas las configuraciones de web.config?