Попробуйте открыть файл app.config в проекте. Я видел это, когда определяются несколько разделов настроек (особенно если вы когда-либо переименовывали свой проект).
Попробуйте избавиться от лишних разделов настроек (не забудьте также удалить элемент section из тега 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>
Просто идея.