我有遗留的ASP.NET网站,从ASP.NET 2.0升级到ASP.NET 4.0目标框架。遗憾的是,旧的web.config文件使用了太多自定义部分,与appSettings位于同一级别。
网站编译时出现错误"Unrecognized configuration section MyCustomSection"
。是否有可能不重构所有代码并将自定义配置部分保留在web.config文件中?
答案 0 :(得分:2)
您是否已将MyCustomSection添加到配置中?
<configSections>
<section name="MyCustomSection"... />
</configSections>