アプリの以前の構成戦略を調べて置き換えて、より理にかなっていますが、アプリの読み込み時に「認識されない属性」例外をスローしています。
これが私の構成セクションです
using System.Configuration;
namespace MyApplication
{
public class MyConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("defaultPageIndex", DefaultValue = 1)]
[IntegerValidator(MinValue = 1)]
public int DefaultPageIndex
{
get { return (int)this["defaultPageIndex"]; }
set { this["defaultPageIndex"] = value; }
}
}
}
これがweb.configです...
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="mySettingsGroup">
<section name="mySettings" type="MyApplication.MyConfigurationSection" allowLocation="true" allowDefinition="Everywhere" />
</sectionGroup>
</configSections>
<mySettingsGroup defaultPageIndex="1">
</mySettingsGroup>
</configuration>
エラーはConfig Error Unrecognized attribute 'defaultPageIndex'
Config Source:
27:
28: <mySettingsGroup defaultPageIndex="1">
29: </mySettingsGroup>
これは私が見ていないばかげたものだと確信しています。