From b9a03aa8f71ef383ca4354ec9dbd187c88a9c6d7 Mon Sep 17 00:00:00 2001 From: Andreas Weizel Date: Sat, 11 Oct 2014 20:04:04 +0200 Subject: [PATCH] Fix #577: app.config is not generated correctly with contents of Settings.settings --- .../SettingsEditor/Project/SettingsViewContent.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/AddIns/DisplayBindings/SettingsEditor/Project/SettingsViewContent.cs b/src/AddIns/DisplayBindings/SettingsEditor/Project/SettingsViewContent.cs index 409faf38df..c4485e40e0 100644 --- a/src/AddIns/DisplayBindings/SettingsEditor/Project/SettingsViewContent.cs +++ b/src/AddIns/DisplayBindings/SettingsEditor/Project/SettingsViewContent.cs @@ -151,8 +151,6 @@ namespace ICSharpCode.SettingsEditor #region Update app.config void UpdateAppConfig(XDocument appConfigDoc) { - Console.WriteLine("UpdateAppConfig(XDocument appConfigDoc)"); - /* var entries = view.GetAllEntries(); var userEntries = entries.Where(e => e.Scope == SettingScope.User); var appEntries = entries.Where(e => e.Scope == SettingScope.Application); @@ -178,7 +176,6 @@ namespace ICSharpCode.SettingsEditor if (appSettings != null) { UpdateSettings(appSettings, appEntries); } - */ } void RegisterAppConfigSection(XElement configSections, bool hasUserEntries, bool hasAppEntries)