嘗試打開app.config文件項目。我已經看到它定義了多個設置部分(特別是如果您曾經重命名過您的項目)。
嘗試擺脫任何多餘的設置部分(不要忘記刪除從configSections標籤型材件爲好。)
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ProjectName.Properties.Settings" />
<!-- Remove this -->
<section name="OldProjectName.Properties.Settings" />
</sectionGroup>
</configSections>
<userSettings>
<ProjectName.Properties.Settings>
<!-- Project Settings Appear here -->
</ProjectName.Properties.Settings>
<!-- Remove this -->
<OldProjectName.Properties.Settings>
<!-- Old Project Settings Appear here -->
</OldProjectName.Properties.Settings>
</userSettings>
</configuration>
只是一個想法。
感謝您的想法,但該文檔實際上只包含一組設置。 :/ – 2010-03-10 01:38:33