Estou tentando adicionar
<location inheritInChildApplications="false">
ao web.config do meu aplicativo Web pai, mas ele não parece estar funcionando.
Os meus pais web.config
têm:
<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>
Meu aplicativo Web filho é configurado como um aplicativo no IIS e é herdado dos pais, o web.config
que está causando problemas.
Onde exatamente devo colocar o
<location inheritInChildApplications="false">
então ele ignora todas as várias configurações do web.config?