Я пытаюсь добавить
<location inheritInChildApplications="false">
в web.config моего родительского веб-приложения, но, похоже, он не работает.
У моих родителей web.config
есть:
<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>
Моё дочернее веб-приложение настроено как приложение в IIS и наследуется от родительского, web.config
что вызывает проблемы.
Где именно я должен разместить
<location inheritInChildApplications="false">
поэтому он игнорирует все различные настройки web.config?