Я пытаюсь добавить
<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?