From 532c40f84823141bf788a6da8e63ba00e5625d3e Mon Sep 17 00:00:00 2001 From: Khang Yeen Lee Date: Tue, 15 Sep 2015 11:58:31 +0200 Subject: [PATCH] #50. Final touch up for JenkinsTray. --- JenkinsTray.Tests/Utils/StringUtilsTests.cs | 2 +- JenkinsTray/App.config | 2 +- .../BusinessComponents/AllServersStatus.cs | 8 +++--- .../ApplicationUpdateService.cs | 8 +++--- .../BusinessComponents/ClaimService.cs | 6 ++-- .../ConfigurationService.cs | 6 ++-- .../BusinessComponents/JenkinsService.cs | 10 +++---- .../BusinessComponents/NotificationService.cs | 4 +-- .../ProjectsUpdateService.cs | 6 ++-- JenkinsTray/BusinessComponents/SoundPlayer.cs | 2 +- JenkinsTray/Configuration.xml | 28 +++++++++---------- JenkinsTray/Entities/AllBuildDetails.cs | 2 +- JenkinsTray/Entities/BuildCause.cs | 2 +- JenkinsTray/Entities/BuildDetails.cs | 2 +- JenkinsTray/Entities/BuildStatus.cs | 2 +- JenkinsTray/Entities/BuildTransition.cs | 2 +- JenkinsTray/Entities/ClaimDetails.cs | 2 +- JenkinsTray/Entities/Configuration.cs | 4 +-- JenkinsTray/Entities/Credentials.cs | 2 +- JenkinsTray/Entities/GeneralSettings.cs | 4 +-- JenkinsTray/Entities/NotificationSettings.cs | 2 +- JenkinsTray/Entities/Project.cs | 2 +- JenkinsTray/Entities/ProjectActivity.cs | 4 +-- JenkinsTray/Entities/Server.cs | 4 +-- JenkinsTray/JenkinsTray.csproj | 4 +-- JenkinsTray/JenkinsTrayResources.Designer.cs | 4 +-- .../LegacyConfigurationService.cs | 6 ++-- .../Collections/DualPropertiesContainer.cs | 2 +- .../Collections/IPropertiesContainer.cs | 2 +- .../Legacy/Collections/PropertiesContainer.cs | 2 +- JenkinsTray/Legacy/IO/PropertiesFile.cs | 4 +-- JenkinsTray/LoggingConfig.xml | 2 +- JenkinsTray/Program.cs | 10 +++---- JenkinsTray/Properties/Resources.Designer.cs | 4 +-- JenkinsTray/Properties/Settings.Designer.cs | 2 +- JenkinsTray/UI/AboutForm.Designer.cs | 2 +- JenkinsTray/UI/AboutForm.cs | 4 +-- .../UI/AuthenticationTokenForm.Designer.cs | 2 +- JenkinsTray/UI/AuthenticationTokenForm.cs | 6 ++-- JenkinsTray/UI/ClaimBuildForm.Designer.cs | 2 +- JenkinsTray/UI/ClaimBuildForm.cs | 6 ++-- .../NotificationSettingsControl.Designer.cs | 2 +- .../Controls/NotificationSettingsControl.cs | 4 +-- .../NotificationsSettingsControl.Designer.cs | 10 +++---- .../Controls/NotificationsSettingsControl.cs | 4 +-- .../Controls/ProjectListControl.Designer.cs | 2 +- JenkinsTray/UI/Controls/ProjectListControl.cs | 8 +++--- .../UI/Controls/ServerListControl.Designer.cs | 2 +- JenkinsTray/UI/Controls/ServerListControl.cs | 8 +++--- .../ServersSettingsControl.Designer.cs | 6 ++-- .../UI/Controls/ServersSettingsControl.cs | 2 +- .../UI/Controls/ServersSettingsController.cs | 6 ++-- JenkinsTray/UI/EditServerForm.cs | 4 +-- JenkinsTray/UI/EditServerForm.designer.cs | 2 +- JenkinsTray/UI/MainForm.Designer.cs | 2 +- JenkinsTray/UI/MainForm.cs | 14 +++++----- JenkinsTray/UI/SettingsForm.Designer.cs | 10 +++---- JenkinsTray/UI/SettingsForm.cs | 8 +++--- JenkinsTray/UI/TrayNotifier.Designer.cs | 2 +- JenkinsTray/UI/TrayNotifier.cs | 12 ++++---- JenkinsTray/Utils/ApplicationUpdateHandler.cs | 4 +-- .../BackgroundProcessExecutor.cs | 4 +-- .../Utils/BackgroundProcessing/ErrorHolder.cs | 2 +- .../Utils/BackgroundProcessing/Process.cs | 2 +- .../Utils/Collections/ThreadSafeDictionary.cs | 2 +- JenkinsTray/Utils/IO/PathHelper.cs | 2 +- JenkinsTray/Utils/Logging/LoggingHelper.cs | 2 +- JenkinsTray/Utils/NetUtils.cs | 2 +- JenkinsTray/Utils/PInvokeUtils.cs | 2 +- .../Serialization/CredentialsJsonConverter.cs | 4 +-- JenkinsTray/Utils/StringUtils.cs | 2 +- JenkinsTray/Utils/ThreadExceptionHandler.cs | 4 +-- JenkinsTray/Utils/UIUtils.cs | 2 +- JenkinsTray/Utils/Web/CookieAwareWebClient.cs | 2 +- JenkinsTray/Utils/XmlUtils.cs | 2 +- 75 files changed, 163 insertions(+), 163 deletions(-) diff --git a/JenkinsTray.Tests/Utils/StringUtilsTests.cs b/JenkinsTray.Tests/Utils/StringUtilsTests.cs index 382d526..f8a7713 100644 --- a/JenkinsTray.Tests/Utils/StringUtilsTests.cs +++ b/JenkinsTray.Tests/Utils/StringUtilsTests.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; using NUnit.Framework; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; namespace JenkinsTray.Tests.Utils { diff --git a/JenkinsTray/App.config b/JenkinsTray/App.config index 491a17a..ce3a65f 100644 --- a/JenkinsTray/App.config +++ b/JenkinsTray/App.config @@ -18,7 +18,7 @@ - + \ No newline at end of file diff --git a/JenkinsTray/BusinessComponents/AllServersStatus.cs b/JenkinsTray/BusinessComponents/AllServersStatus.cs index cc320a4..56a2502 100644 --- a/JenkinsTray/BusinessComponents/AllServersStatus.cs +++ b/JenkinsTray/BusinessComponents/AllServersStatus.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Utils; -using Jenkins.Tray.Utils.Collections; +using JenkinsTray.Entities; +using JenkinsTray.Utils; +using JenkinsTray.Utils.Collections; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class AllServersStatus { diff --git a/JenkinsTray/BusinessComponents/ApplicationUpdateService.cs b/JenkinsTray/BusinessComponents/ApplicationUpdateService.cs index 49396b0..c5dff5c 100644 --- a/JenkinsTray/BusinessComponents/ApplicationUpdateService.cs +++ b/JenkinsTray/BusinessComponents/ApplicationUpdateService.cs @@ -5,13 +5,13 @@ using Common.Logging; using System.Reflection; using System.Threading; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using System.ComponentModel; using System.Net; -using Jenkins.Tray.Utils.IO; -using Jenkins.Tray.Utils.Collections; +using JenkinsTray.Utils.IO; +using JenkinsTray.Utils.Collections; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class ApplicationUpdateService { diff --git a/JenkinsTray/BusinessComponents/ClaimService.cs b/JenkinsTray/BusinessComponents/ClaimService.cs index 3155580..d2a9c53 100644 --- a/JenkinsTray/BusinessComponents/ClaimService.cs +++ b/JenkinsTray/BusinessComponents/ClaimService.cs @@ -7,11 +7,11 @@ using System.IO; using System.Runtime.Serialization.Json; using System.Web; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Utils; +using JenkinsTray.Entities; +using JenkinsTray.Utils; using System.Xml; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class ClaimService { diff --git a/JenkinsTray/BusinessComponents/ConfigurationService.cs b/JenkinsTray/BusinessComponents/ConfigurationService.cs index 5231d95..e2b2683 100644 --- a/JenkinsTray/BusinessComponents/ConfigurationService.cs +++ b/JenkinsTray/BusinessComponents/ConfigurationService.cs @@ -1,15 +1,15 @@ using System; using System.Collections.Generic; using System.Text; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; using Iesi.Collections.Generic; -using Jenkins.Tray.Utils.IO; +using JenkinsTray.Utils.IO; using System.IO; using System.Reflection; using Common.Logging; using Newtonsoft.Json; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class ConfigurationService { diff --git a/JenkinsTray/BusinessComponents/JenkinsService.cs b/JenkinsTray/BusinessComponents/JenkinsService.cs index db7c980..f3b7dcd 100644 --- a/JenkinsTray/BusinessComponents/JenkinsService.cs +++ b/JenkinsTray/BusinessComponents/JenkinsService.cs @@ -4,18 +4,18 @@ using System.Net; using System.Web; using System.Xml; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Utils; +using JenkinsTray.Entities; +using JenkinsTray.Utils; using Common.Logging; using System.Reflection; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using Iesi.Collections.Generic; -using Jenkins.Tray.Utils.Web; +using JenkinsTray.Utils.Web; using System.Threading; using System.Security.Cryptography.X509Certificates; using System.Net.Security; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class JenkinsService { diff --git a/JenkinsTray/BusinessComponents/NotificationService.cs b/JenkinsTray/BusinessComponents/NotificationService.cs index 234c075..97be0c4 100644 --- a/JenkinsTray/BusinessComponents/NotificationService.cs +++ b/JenkinsTray/BusinessComponents/NotificationService.cs @@ -1,8 +1,8 @@ using System; using System.ComponentModel; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class NotificationService : Component { diff --git a/JenkinsTray/BusinessComponents/ProjectsUpdateService.cs b/JenkinsTray/BusinessComponents/ProjectsUpdateService.cs index 50f8e4d..00f5299 100644 --- a/JenkinsTray/BusinessComponents/ProjectsUpdateService.cs +++ b/JenkinsTray/BusinessComponents/ProjectsUpdateService.cs @@ -4,13 +4,13 @@ using System.Threading; using Common.Logging; using System.Reflection; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; using System.ComponentModel; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using Iesi.Collections.Generic; using Amib.Threading; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public class ProjectsUpdateService { diff --git a/JenkinsTray/BusinessComponents/SoundPlayer.cs b/JenkinsTray/BusinessComponents/SoundPlayer.cs index f768142..96e25ce 100644 --- a/JenkinsTray/BusinessComponents/SoundPlayer.cs +++ b/JenkinsTray/BusinessComponents/SoundPlayer.cs @@ -3,7 +3,7 @@ using Common.Logging; using System.Reflection; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { public static class SoundPlayer { diff --git a/JenkinsTray/Configuration.xml b/JenkinsTray/Configuration.xml index c2b8562..62c2b05 100644 --- a/JenkinsTray/Configuration.xml +++ b/JenkinsTray/Configuration.xml @@ -1,31 +1,31 @@  - - + + - - - - - - + + + + + + - + - + - - - + + + - + diff --git a/JenkinsTray/Entities/AllBuildDetails.cs b/JenkinsTray/Entities/AllBuildDetails.cs index 38a84ef..c436f83 100644 --- a/JenkinsTray/Entities/AllBuildDetails.cs +++ b/JenkinsTray/Entities/AllBuildDetails.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public class AllBuildDetails { diff --git a/JenkinsTray/Entities/BuildCause.cs b/JenkinsTray/Entities/BuildCause.cs index 6e5a962..9463065 100644 --- a/JenkinsTray/Entities/BuildCause.cs +++ b/JenkinsTray/Entities/BuildCause.cs @@ -5,7 +5,7 @@ using System.Xml; using Iesi.Collections.Generic; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public enum BuildCauseEnum { diff --git a/JenkinsTray/Entities/BuildDetails.cs b/JenkinsTray/Entities/BuildDetails.cs index 4cf7198..85a1f5d 100644 --- a/JenkinsTray/Entities/BuildDetails.cs +++ b/JenkinsTray/Entities/BuildDetails.cs @@ -4,7 +4,7 @@ using System.Diagnostics; using Iesi.Collections.Generic; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [DebuggerDisplay("BuildNumber={Number}, Result={Result}")] public class BuildDetails diff --git a/JenkinsTray/Entities/BuildStatus.cs b/JenkinsTray/Entities/BuildStatus.cs index dc2b272..c78cf88 100644 --- a/JenkinsTray/Entities/BuildStatus.cs +++ b/JenkinsTray/Entities/BuildStatus.cs @@ -3,7 +3,7 @@ using System.Text; using System.Diagnostics; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public enum BuildStatusEnum { diff --git a/JenkinsTray/Entities/BuildTransition.cs b/JenkinsTray/Entities/BuildTransition.cs index c58b427..ff99c32 100644 --- a/JenkinsTray/Entities/BuildTransition.cs +++ b/JenkinsTray/Entities/BuildTransition.cs @@ -4,7 +4,7 @@ using System.Text; using System.Windows.Forms; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public class BuildTransition { diff --git a/JenkinsTray/Entities/ClaimDetails.cs b/JenkinsTray/Entities/ClaimDetails.cs index cce2ab3..86af3fb 100644 --- a/JenkinsTray/Entities/ClaimDetails.cs +++ b/JenkinsTray/Entities/ClaimDetails.cs @@ -3,7 +3,7 @@ using System.Text; using Iesi.Collections.Generic; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public class ClaimDetails { diff --git a/JenkinsTray/Entities/Configuration.cs b/JenkinsTray/Entities/Configuration.cs index dece249..519591e 100644 --- a/JenkinsTray/Entities/Configuration.cs +++ b/JenkinsTray/Entities/Configuration.cs @@ -4,9 +4,9 @@ using System.Text; using Iesi.Collections.Generic; using Newtonsoft.Json; -using Jenkins.Tray.Utils.Serialization; +using JenkinsTray.Utils.Serialization; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [JsonObject(MemberSerialization.OptIn)] public class Configuration diff --git a/JenkinsTray/Entities/Credentials.cs b/JenkinsTray/Entities/Credentials.cs index 271415d..6574f12 100644 --- a/JenkinsTray/Entities/Credentials.cs +++ b/JenkinsTray/Entities/Credentials.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public class Credentials { diff --git a/JenkinsTray/Entities/GeneralSettings.cs b/JenkinsTray/Entities/GeneralSettings.cs index 4956a04..cd13516 100644 --- a/JenkinsTray/Entities/GeneralSettings.cs +++ b/JenkinsTray/Entities/GeneralSettings.cs @@ -3,9 +3,9 @@ using System.Linq; using System.Text; using Newtonsoft.Json; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [JsonObject(MemberSerialization.OptIn)] public class GeneralSettings diff --git a/JenkinsTray/Entities/NotificationSettings.cs b/JenkinsTray/Entities/NotificationSettings.cs index ae06d9a..67aabce 100644 --- a/JenkinsTray/Entities/NotificationSettings.cs +++ b/JenkinsTray/Entities/NotificationSettings.cs @@ -1,5 +1,5 @@ using Newtonsoft.Json; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [JsonObject(MemberSerialization.OptIn)] public class NotificationSettings diff --git a/JenkinsTray/Entities/Project.cs b/JenkinsTray/Entities/Project.cs index cdeee0d..7baf92f 100644 --- a/JenkinsTray/Entities/Project.cs +++ b/JenkinsTray/Entities/Project.cs @@ -3,7 +3,7 @@ using System.Text; using Newtonsoft.Json; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [JsonObject(MemberSerialization.OptIn)] public class Project : IComparable diff --git a/JenkinsTray/Entities/ProjectActivity.cs b/JenkinsTray/Entities/ProjectActivity.cs index 62c8694..d05d549 100644 --- a/JenkinsTray/Entities/ProjectActivity.cs +++ b/JenkinsTray/Entities/ProjectActivity.cs @@ -6,9 +6,9 @@ using System.Diagnostics; using Common.Logging; using System.Reflection; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { public class CaptionAndMessage { diff --git a/JenkinsTray/Entities/Server.cs b/JenkinsTray/Entities/Server.cs index d8282bc..b46d604 100644 --- a/JenkinsTray/Entities/Server.cs +++ b/JenkinsTray/Entities/Server.cs @@ -3,9 +3,9 @@ using System.Text; using Iesi.Collections.Generic; using Newtonsoft.Json; -using Jenkins.Tray.Utils.Serialization; +using JenkinsTray.Utils.Serialization; -namespace Jenkins.Tray.Entities +namespace JenkinsTray.Entities { [JsonObject(MemberSerialization.OptIn)] public class Server diff --git a/JenkinsTray/JenkinsTray.csproj b/JenkinsTray/JenkinsTray.csproj index 0f2c00c..3f81c69 100644 --- a/JenkinsTray/JenkinsTray.csproj +++ b/JenkinsTray/JenkinsTray.csproj @@ -8,9 +8,9 @@ {A54602CA-6823-4F2C-870F-1D464D9F4814} WinExe Properties - Jenkins.Tray + JenkinsTray JenkinsTray - Jenkins.Tray.Program + JenkinsTray.Program diff --git a/JenkinsTray/JenkinsTrayResources.Designer.cs b/JenkinsTray/JenkinsTrayResources.Designer.cs index b9b6114..3cac729 100644 --- a/JenkinsTray/JenkinsTrayResources.Designer.cs +++ b/JenkinsTray/JenkinsTrayResources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Jenkins.Tray { +namespace JenkinsTray { using System; @@ -39,7 +39,7 @@ internal JenkinsTrayResources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Jenkins.Tray.JenkinsTrayResources", typeof(JenkinsTrayResources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("JenkinsTray.JenkinsTrayResources", typeof(JenkinsTrayResources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/JenkinsTray/Legacy/BusinessComponents/LegacyConfigurationService.cs b/JenkinsTray/Legacy/BusinessComponents/LegacyConfigurationService.cs index b32a2a4..eeef222 100644 --- a/JenkinsTray/Legacy/BusinessComponents/LegacyConfigurationService.cs +++ b/JenkinsTray/Legacy/BusinessComponents/LegacyConfigurationService.cs @@ -1,14 +1,14 @@ using System; using System.Collections.Generic; using System.Text; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; using Iesi.Collections.Generic; -using Jenkins.Tray.Utils.IO; +using JenkinsTray.Utils.IO; using System.IO; using System.Reflection; using Common.Logging; -namespace Jenkins.Tray.BusinessComponents +namespace JenkinsTray.BusinessComponents { [Obsolete] public class LegacyConfigurationService diff --git a/JenkinsTray/Legacy/Collections/DualPropertiesContainer.cs b/JenkinsTray/Legacy/Collections/DualPropertiesContainer.cs index 9d0ed1c..82c0d69 100644 --- a/JenkinsTray/Legacy/Collections/DualPropertiesContainer.cs +++ b/JenkinsTray/Legacy/Collections/DualPropertiesContainer.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace Jenkins.Tray.Utils.Collections +namespace JenkinsTray.Utils.Collections { [Obsolete] public class DualPropertiesContainer : IPropertiesContainer diff --git a/JenkinsTray/Legacy/Collections/IPropertiesContainer.cs b/JenkinsTray/Legacy/Collections/IPropertiesContainer.cs index 660129c..b4418a7 100644 --- a/JenkinsTray/Legacy/Collections/IPropertiesContainer.cs +++ b/JenkinsTray/Legacy/Collections/IPropertiesContainer.cs @@ -4,7 +4,7 @@ using System.IO; using System.Reflection; -namespace Jenkins.Tray.Utils.Collections +namespace JenkinsTray.Utils.Collections { // reads a properties file [Obsolete] diff --git a/JenkinsTray/Legacy/Collections/PropertiesContainer.cs b/JenkinsTray/Legacy/Collections/PropertiesContainer.cs index 90a598b..99fc4d7 100644 --- a/JenkinsTray/Legacy/Collections/PropertiesContainer.cs +++ b/JenkinsTray/Legacy/Collections/PropertiesContainer.cs @@ -8,7 +8,7 @@ using System.Globalization; using System.Text.RegularExpressions; -namespace Jenkins.Tray.Utils.Collections +namespace JenkinsTray.Utils.Collections { // reads a properties file [Obsolete] diff --git a/JenkinsTray/Legacy/IO/PropertiesFile.cs b/JenkinsTray/Legacy/IO/PropertiesFile.cs index 4c8645e..c9d38f1 100644 --- a/JenkinsTray/Legacy/IO/PropertiesFile.cs +++ b/JenkinsTray/Legacy/IO/PropertiesFile.cs @@ -6,9 +6,9 @@ using Common.Logging; -using Jenkins.Tray.Utils.Collections; +using JenkinsTray.Utils.Collections; -namespace Jenkins.Tray.Utils.IO +namespace JenkinsTray.Utils.IO { // reads a properties file [Obsolete] diff --git a/JenkinsTray/LoggingConfig.xml b/JenkinsTray/LoggingConfig.xml index c23f3c6..49a1082 100644 --- a/JenkinsTray/LoggingConfig.xml +++ b/JenkinsTray/LoggingConfig.xml @@ -4,7 +4,7 @@ - + diff --git a/JenkinsTray/Program.cs b/JenkinsTray/Program.cs index fd4e593..d3c9bde 100644 --- a/JenkinsTray/Program.cs +++ b/JenkinsTray/Program.cs @@ -1,23 +1,23 @@ using System; using System.Collections.Generic; using System.Windows.Forms; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; using DevExpress.Skins; using DevExpress.LookAndFeel; using DevExpress.UserSkins; -using Jenkins.Tray.UI; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.UI; +using JenkinsTray.Utils.Logging; using System.Reflection; using System.Diagnostics; using Common.Logging; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; using System.Threading; using System.Drawing; using System.IO; using DevExpress.XtraEditors; using Spring.Context.Support; -namespace Jenkins.Tray +namespace JenkinsTray { static class Program { diff --git a/JenkinsTray/Properties/Resources.Designer.cs b/JenkinsTray/Properties/Resources.Designer.cs index 1a5ebc7..54fa8cf 100644 --- a/JenkinsTray/Properties/Resources.Designer.cs +++ b/JenkinsTray/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Jenkins.Tray.Properties { +namespace JenkinsTray.Properties { using System; @@ -39,7 +39,7 @@ internal Resources() { internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Jenkins.Tray.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("JenkinsTray.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/JenkinsTray/Properties/Settings.Designer.cs b/JenkinsTray/Properties/Settings.Designer.cs index 12abec6..3a03f92 100644 --- a/JenkinsTray/Properties/Settings.Designer.cs +++ b/JenkinsTray/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace Jenkins.Tray.Properties { +namespace JenkinsTray.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] diff --git a/JenkinsTray/UI/AboutForm.Designer.cs b/JenkinsTray/UI/AboutForm.Designer.cs index 047f798..7b77279 100644 --- a/JenkinsTray/UI/AboutForm.Designer.cs +++ b/JenkinsTray/UI/AboutForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class AboutForm { diff --git a/JenkinsTray/UI/AboutForm.cs b/JenkinsTray/UI/AboutForm.cs index c134ee2..b30edb0 100644 --- a/JenkinsTray/UI/AboutForm.cs +++ b/JenkinsTray/UI/AboutForm.cs @@ -8,10 +8,10 @@ using System.Diagnostics; using System.Reflection; using Spring.Context.Support; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; using Common.Logging; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class AboutForm : DevExpress.XtraEditors.XtraForm { diff --git a/JenkinsTray/UI/AuthenticationTokenForm.Designer.cs b/JenkinsTray/UI/AuthenticationTokenForm.Designer.cs index d26879b..94c42f6 100644 --- a/JenkinsTray/UI/AuthenticationTokenForm.Designer.cs +++ b/JenkinsTray/UI/AuthenticationTokenForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class AuthenticationTokenForm { diff --git a/JenkinsTray/UI/AuthenticationTokenForm.cs b/JenkinsTray/UI/AuthenticationTokenForm.cs index f4f0b86..910fc91 100644 --- a/JenkinsTray/UI/AuthenticationTokenForm.cs +++ b/JenkinsTray/UI/AuthenticationTokenForm.cs @@ -8,11 +8,11 @@ using System.Windows.Forms; using System.Reflection; using Spring.Context.Support; -using Jenkins.Tray.Utils; -using Jenkins.Tray.Entities; +using JenkinsTray.Utils; +using JenkinsTray.Entities; using Common.Logging; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class AuthenticationTokenForm : DevExpress.XtraEditors.XtraForm { diff --git a/JenkinsTray/UI/ClaimBuildForm.Designer.cs b/JenkinsTray/UI/ClaimBuildForm.Designer.cs index 41493ad..8eef850 100644 --- a/JenkinsTray/UI/ClaimBuildForm.Designer.cs +++ b/JenkinsTray/UI/ClaimBuildForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class ClaimBuildForm { diff --git a/JenkinsTray/UI/ClaimBuildForm.cs b/JenkinsTray/UI/ClaimBuildForm.cs index baa3d52..f9c8e61 100644 --- a/JenkinsTray/UI/ClaimBuildForm.cs +++ b/JenkinsTray/UI/ClaimBuildForm.cs @@ -6,11 +6,11 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.Entities; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.Entities; +using JenkinsTray.BusinessComponents; using Spring.Context.Support; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class ClaimBuildForm : DevExpress.XtraEditors.XtraForm { diff --git a/JenkinsTray/UI/Controls/NotificationSettingsControl.Designer.cs b/JenkinsTray/UI/Controls/NotificationSettingsControl.Designer.cs index cf9d979..439428d 100644 --- a/JenkinsTray/UI/Controls/NotificationSettingsControl.Designer.cs +++ b/JenkinsTray/UI/Controls/NotificationSettingsControl.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { partial class NotificationSettingsControl { diff --git a/JenkinsTray/UI/Controls/NotificationSettingsControl.cs b/JenkinsTray/UI/Controls/NotificationSettingsControl.cs index 6cd2e65..4a4c3af 100644 --- a/JenkinsTray/UI/Controls/NotificationSettingsControl.cs +++ b/JenkinsTray/UI/Controls/NotificationSettingsControl.cs @@ -6,12 +6,12 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; using DevExpress.XtraEditors.Controls; using Spring.Context.Support; using System.Diagnostics; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public partial class NotificationSettingsControl : DevExpress.XtraEditors.XtraUserControl { diff --git a/JenkinsTray/UI/Controls/NotificationsSettingsControl.Designer.cs b/JenkinsTray/UI/Controls/NotificationsSettingsControl.Designer.cs index ec6c263..8ef200d 100644 --- a/JenkinsTray/UI/Controls/NotificationsSettingsControl.Designer.cs +++ b/JenkinsTray/UI/Controls/NotificationsSettingsControl.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { partial class NotificationsSettingsControl { @@ -29,10 +29,10 @@ protected override void Dispose(bool disposing) private void InitializeComponent() { this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); - this.notificationSettingsControl1 = new Jenkins.Tray.UI.Controls.NotificationSettingsControl(); - this.notificationSettingsControl2 = new Jenkins.Tray.UI.Controls.NotificationSettingsControl(); - this.notificationSettingsControl3 = new Jenkins.Tray.UI.Controls.NotificationSettingsControl(); - this.notificationSettingsControl4 = new Jenkins.Tray.UI.Controls.NotificationSettingsControl(); + this.notificationSettingsControl1 = new JenkinsTray.UI.Controls.NotificationSettingsControl(); + this.notificationSettingsControl2 = new JenkinsTray.UI.Controls.NotificationSettingsControl(); + this.notificationSettingsControl3 = new JenkinsTray.UI.Controls.NotificationSettingsControl(); + this.notificationSettingsControl4 = new JenkinsTray.UI.Controls.NotificationSettingsControl(); this.enableSoundCheckBox = new DevExpress.XtraEditors.CheckEdit(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.treatUnstableAsFailedCheckBox = new DevExpress.XtraEditors.CheckEdit(); diff --git a/JenkinsTray/UI/Controls/NotificationsSettingsControl.cs b/JenkinsTray/UI/Controls/NotificationsSettingsControl.cs index 4533586..1f8d6e8 100644 --- a/JenkinsTray/UI/Controls/NotificationsSettingsControl.cs +++ b/JenkinsTray/UI/Controls/NotificationsSettingsControl.cs @@ -6,10 +6,10 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; using Spring.Context.Support; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public partial class NotificationsSettingsControl : DevExpress.XtraEditors.XtraUserControl { diff --git a/JenkinsTray/UI/Controls/ProjectListControl.Designer.cs b/JenkinsTray/UI/Controls/ProjectListControl.Designer.cs index 388c729..587cb46 100644 --- a/JenkinsTray/UI/Controls/ProjectListControl.Designer.cs +++ b/JenkinsTray/UI/Controls/ProjectListControl.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { partial class ProjectListControl { diff --git a/JenkinsTray/UI/Controls/ProjectListControl.cs b/JenkinsTray/UI/Controls/ProjectListControl.cs index 756896e..dd5bfeb 100644 --- a/JenkinsTray/UI/Controls/ProjectListControl.cs +++ b/JenkinsTray/UI/Controls/ProjectListControl.cs @@ -6,13 +6,13 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; -using Jenkins.Tray.Entities; +using JenkinsTray.BusinessComponents; +using JenkinsTray.Entities; using DevExpress.XtraBars; -using Jenkins.Tray.Utils.BackgroundProcessing; +using JenkinsTray.Utils.BackgroundProcessing; using Spring.Context.Support; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public partial class ProjectListControl : DevExpress.XtraEditors.XtraUserControl { diff --git a/JenkinsTray/UI/Controls/ServerListControl.Designer.cs b/JenkinsTray/UI/Controls/ServerListControl.Designer.cs index 2d748b7..e1d37e9 100644 --- a/JenkinsTray/UI/Controls/ServerListControl.Designer.cs +++ b/JenkinsTray/UI/Controls/ServerListControl.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { partial class ServerListControl { diff --git a/JenkinsTray/UI/Controls/ServerListControl.cs b/JenkinsTray/UI/Controls/ServerListControl.cs index e49e092..521bd49 100644 --- a/JenkinsTray/UI/Controls/ServerListControl.cs +++ b/JenkinsTray/UI/Controls/ServerListControl.cs @@ -6,13 +6,13 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; -using Jenkins.Tray.Entities; +using JenkinsTray.BusinessComponents; +using JenkinsTray.Entities; using DevExpress.XtraBars; -using Jenkins.Tray.Utils.BackgroundProcessing; +using JenkinsTray.Utils.BackgroundProcessing; using Spring.Context.Support; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public partial class ServerListControl : DevExpress.XtraEditors.XtraUserControl { diff --git a/JenkinsTray/UI/Controls/ServersSettingsControl.Designer.cs b/JenkinsTray/UI/Controls/ServersSettingsControl.Designer.cs index 02a8fd1..38de3ef 100644 --- a/JenkinsTray/UI/Controls/ServersSettingsControl.Designer.cs +++ b/JenkinsTray/UI/Controls/ServersSettingsControl.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { partial class ServersSettingsControl { @@ -39,8 +39,8 @@ private void InitializeComponent() this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl(); - this.serverListControl = new Jenkins.Tray.UI.Controls.ServerListControl(); - this.projectListControl = new Jenkins.Tray.UI.Controls.ProjectListControl(); + this.serverListControl = new JenkinsTray.UI.Controls.ServerListControl(); + this.projectListControl = new JenkinsTray.UI.Controls.ProjectListControl(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMarqueeProgressBar1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit(); diff --git a/JenkinsTray/UI/Controls/ServersSettingsControl.cs b/JenkinsTray/UI/Controls/ServersSettingsControl.cs index c626cac..ca7e7d0 100644 --- a/JenkinsTray/UI/Controls/ServersSettingsControl.cs +++ b/JenkinsTray/UI/Controls/ServersSettingsControl.cs @@ -6,7 +6,7 @@ using System.Text; using System.Windows.Forms; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public partial class ServersSettingsControl : DevExpress.XtraEditors.XtraUserControl { diff --git a/JenkinsTray/UI/Controls/ServersSettingsController.cs b/JenkinsTray/UI/Controls/ServersSettingsController.cs index b268547..17c30ae 100644 --- a/JenkinsTray/UI/Controls/ServersSettingsController.cs +++ b/JenkinsTray/UI/Controls/ServersSettingsController.cs @@ -2,12 +2,12 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; using Spring.Context.Support; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; using DevExpress.XtraBars; -namespace Jenkins.Tray.UI.Controls +namespace JenkinsTray.UI.Controls { public class ServersSettingsController { diff --git a/JenkinsTray/UI/EditServerForm.cs b/JenkinsTray/UI/EditServerForm.cs index 29aa422..b3f7819 100644 --- a/JenkinsTray/UI/EditServerForm.cs +++ b/JenkinsTray/UI/EditServerForm.cs @@ -7,9 +7,9 @@ using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class EditServerForm : DevExpress.XtraEditors.XtraForm { diff --git a/JenkinsTray/UI/EditServerForm.designer.cs b/JenkinsTray/UI/EditServerForm.designer.cs index e0329b1..4dcabb6 100644 --- a/JenkinsTray/UI/EditServerForm.designer.cs +++ b/JenkinsTray/UI/EditServerForm.designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class EditServerForm { diff --git a/JenkinsTray/UI/MainForm.Designer.cs b/JenkinsTray/UI/MainForm.Designer.cs index 9d5d185..1605f3f 100644 --- a/JenkinsTray/UI/MainForm.Designer.cs +++ b/JenkinsTray/UI/MainForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class MainForm { diff --git a/JenkinsTray/UI/MainForm.cs b/JenkinsTray/UI/MainForm.cs index d3d71a4..8cb8887 100644 --- a/JenkinsTray/UI/MainForm.cs +++ b/JenkinsTray/UI/MainForm.cs @@ -6,23 +6,23 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Properties; +using JenkinsTray.BusinessComponents; +using JenkinsTray.Entities; +using JenkinsTray.Properties; using DevExpress.XtraGrid.Views.Base; using System.Drawing.Imaging; using Common.Logging; using System.Reflection; using DevExpress.XtraGrid.Views.Grid.ViewInfo; using System.Diagnostics; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using DevExpress.Utils.Controls; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; using DevExpress.XtraGrid.Columns; using Spring.Context.Support; using DevExpress.Utils; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class MainForm : DevExpress.XtraEditors.XtraForm { @@ -191,7 +191,7 @@ private void LoadIcon(BuildStatusEnum statusValue, bool isInProgress, bool isStu try { - string resourceName = string.Format("Jenkins.Tray.Resources.StatusIcons.{0}.gif", status.Key); + string resourceName = string.Format("JenkinsTray.Resources.StatusIcons.{0}.gif", status.Key); Image img = ResourceImageHelper.CreateImageFromResources(resourceName, GetType().Assembly); byte[] imgBytes = DevExpress.XtraEditors.Controls.ByteImageConverter.ToByteArray(img, ImageFormat.Gif); iconsByKey.Add(status.Key, imgBytes); diff --git a/JenkinsTray/UI/SettingsForm.Designer.cs b/JenkinsTray/UI/SettingsForm.Designer.cs index 21d16ed..4971aca 100644 --- a/JenkinsTray/UI/SettingsForm.Designer.cs +++ b/JenkinsTray/UI/SettingsForm.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class SettingsForm { @@ -31,9 +31,9 @@ private void InitializeComponent() System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm)); this.tabControl = new DevExpress.XtraTab.XtraTabControl(); this.serversTabPage = new DevExpress.XtraTab.XtraTabPage(); - this.serversSettingsControl = new Jenkins.Tray.UI.Controls.ServersSettingsControl(); + this.serversSettingsControl = new JenkinsTray.UI.Controls.ServersSettingsControl(); this.notificationsTabPage = new DevExpress.XtraTab.XtraTabPage(); - this.notificationsSettingsControl = new Jenkins.Tray.UI.Controls.NotificationsSettingsControl(); + this.notificationsSettingsControl = new JenkinsTray.UI.Controls.NotificationsSettingsControl(); this.generalTabPage = new DevExpress.XtraTab.XtraTabPage(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); @@ -313,8 +313,8 @@ private void InitializeComponent() private DevExpress.XtraTab.XtraTabControl tabControl; private DevExpress.XtraTab.XtraTabPage serversTabPage; private DevExpress.XtraTab.XtraTabPage notificationsTabPage; - private Jenkins.Tray.UI.Controls.ServersSettingsControl serversSettingsControl; - private Jenkins.Tray.UI.Controls.NotificationsSettingsControl notificationsSettingsControl; + private JenkinsTray.UI.Controls.ServersSettingsControl serversSettingsControl; + private JenkinsTray.UI.Controls.NotificationsSettingsControl notificationsSettingsControl; private DevExpress.XtraTab.XtraTabPage generalTabPage; private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; private DevExpress.XtraEditors.SpinEdit refreshSpinEdit; diff --git a/JenkinsTray/UI/SettingsForm.cs b/JenkinsTray/UI/SettingsForm.cs index 7300a7c..d434ed6 100644 --- a/JenkinsTray/UI/SettingsForm.cs +++ b/JenkinsTray/UI/SettingsForm.cs @@ -6,13 +6,13 @@ using System.Text; using System.Windows.Forms; using DevExpress.XtraEditors; -using Jenkins.Tray.BusinessComponents; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Utils.BackgroundProcessing; +using JenkinsTray.BusinessComponents; +using JenkinsTray.Entities; +using JenkinsTray.Utils.BackgroundProcessing; using DevExpress.XtraBars; using Spring.Context.Support; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class SettingsForm : DevExpress.XtraEditors.XtraForm { diff --git a/JenkinsTray/UI/TrayNotifier.Designer.cs b/JenkinsTray/UI/TrayNotifier.Designer.cs index fe2f51b..36badbe 100644 --- a/JenkinsTray/UI/TrayNotifier.Designer.cs +++ b/JenkinsTray/UI/TrayNotifier.Designer.cs @@ -1,4 +1,4 @@ -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { partial class TrayNotifier { diff --git a/JenkinsTray/UI/TrayNotifier.cs b/JenkinsTray/UI/TrayNotifier.cs index 8d00352..25f990d 100644 --- a/JenkinsTray/UI/TrayNotifier.cs +++ b/JenkinsTray/UI/TrayNotifier.cs @@ -5,18 +5,18 @@ using System.Drawing; using System.Text; using System.Windows.Forms; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; using Common.Logging; using System.Reflection; -using Jenkins.Tray.Entities; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Entities; +using JenkinsTray.Utils.Logging; using Iesi.Collections.Generic; using DevExpress.XtraEditors; -using Jenkins.Tray.Utils; +using JenkinsTray.Utils; using Spring.Context.Support; using DevExpress.Utils; -namespace Jenkins.Tray.UI +namespace JenkinsTray.UI { public partial class TrayNotifier : Component { @@ -443,7 +443,7 @@ private void LoadIcon(BuildStatusEnum statusValue, bool isInProgress, bool isStu try { - string resourceName = string.Format("Jenkins.Tray.Resources.TrayIcons.{0}.ico", status.Key); + string resourceName = string.Format("JenkinsTray.Resources.TrayIcons.{0}.ico", status.Key); Icon icon = ResourceImageHelper.CreateIconFromResources(resourceName, GetType().Assembly); iconsByKey.Add(status.Key, icon); } diff --git a/JenkinsTray/Utils/ApplicationUpdateHandler.cs b/JenkinsTray/Utils/ApplicationUpdateHandler.cs index bb20c16..9539f61 100644 --- a/JenkinsTray/Utils/ApplicationUpdateHandler.cs +++ b/JenkinsTray/Utils/ApplicationUpdateHandler.cs @@ -6,9 +6,9 @@ using Common.Logging; using System.Reflection; using System.Diagnostics; -using Jenkins.Tray.BusinessComponents; +using JenkinsTray.BusinessComponents; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { class ApplicationUpdateHandler { diff --git a/JenkinsTray/Utils/BackgroundProcessing/BackgroundProcessExecutor.cs b/JenkinsTray/Utils/BackgroundProcessing/BackgroundProcessExecutor.cs index 1c9b34a..678a3f0 100644 --- a/JenkinsTray/Utils/BackgroundProcessing/BackgroundProcessExecutor.cs +++ b/JenkinsTray/Utils/BackgroundProcessing/BackgroundProcessExecutor.cs @@ -11,10 +11,10 @@ using Common.Logging; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using System.Threading; -namespace Jenkins.Tray.Utils.BackgroundProcessing +namespace JenkinsTray.Utils.BackgroundProcessing { public static class BackgroundProcessExecutor { diff --git a/JenkinsTray/Utils/BackgroundProcessing/ErrorHolder.cs b/JenkinsTray/Utils/BackgroundProcessing/ErrorHolder.cs index 2fabd9f..da605f7 100644 --- a/JenkinsTray/Utils/BackgroundProcessing/ErrorHolder.cs +++ b/JenkinsTray/Utils/BackgroundProcessing/ErrorHolder.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace Jenkins.Tray.Utils.BackgroundProcessing +namespace JenkinsTray.Utils.BackgroundProcessing { class ErrorHolder { diff --git a/JenkinsTray/Utils/BackgroundProcessing/Process.cs b/JenkinsTray/Utils/BackgroundProcessing/Process.cs index 5973753..140e826 100644 --- a/JenkinsTray/Utils/BackgroundProcessing/Process.cs +++ b/JenkinsTray/Utils/BackgroundProcessing/Process.cs @@ -3,7 +3,7 @@ using System.Text; using System.ComponentModel; -namespace Jenkins.Tray.Utils.BackgroundProcessing +namespace JenkinsTray.Utils.BackgroundProcessing { public class Process { diff --git a/JenkinsTray/Utils/Collections/ThreadSafeDictionary.cs b/JenkinsTray/Utils/Collections/ThreadSafeDictionary.cs index a4752e3..383f8fa 100644 --- a/JenkinsTray/Utils/Collections/ThreadSafeDictionary.cs +++ b/JenkinsTray/Utils/Collections/ThreadSafeDictionary.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Threading; -namespace Jenkins.Tray.Utils.Collections +namespace JenkinsTray.Utils.Collections { public class ThreadSafeDictionary : Dictionary { diff --git a/JenkinsTray/Utils/IO/PathHelper.cs b/JenkinsTray/Utils/IO/PathHelper.cs index 0b51765..5b39a9d 100644 --- a/JenkinsTray/Utils/IO/PathHelper.cs +++ b/JenkinsTray/Utils/IO/PathHelper.cs @@ -3,7 +3,7 @@ using System.IO; using System.Reflection; -namespace Jenkins.Tray.Utils.IO +namespace JenkinsTray.Utils.IO { public static class PathHelper { diff --git a/JenkinsTray/Utils/Logging/LoggingHelper.cs b/JenkinsTray/Utils/Logging/LoggingHelper.cs index 0717e86..87bb9a2 100644 --- a/JenkinsTray/Utils/Logging/LoggingHelper.cs +++ b/JenkinsTray/Utils/Logging/LoggingHelper.cs @@ -5,7 +5,7 @@ using Common.Logging; -namespace Jenkins.Tray.Utils.Logging +namespace JenkinsTray.Utils.Logging { public static class LoggingHelper { diff --git a/JenkinsTray/Utils/NetUtils.cs b/JenkinsTray/Utils/NetUtils.cs index 9c34de7..973b8f9 100644 --- a/JenkinsTray/Utils/NetUtils.cs +++ b/JenkinsTray/Utils/NetUtils.cs @@ -3,7 +3,7 @@ using System.Linq; using System.Text; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { public static class NetUtils { diff --git a/JenkinsTray/Utils/PInvokeUtils.cs b/JenkinsTray/Utils/PInvokeUtils.cs index b2995e7..ec36298 100644 --- a/JenkinsTray/Utils/PInvokeUtils.cs +++ b/JenkinsTray/Utils/PInvokeUtils.cs @@ -4,7 +4,7 @@ using System.Runtime.InteropServices; using System.Windows.Forms; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { static class PInvokeUtils { diff --git a/JenkinsTray/Utils/Serialization/CredentialsJsonConverter.cs b/JenkinsTray/Utils/Serialization/CredentialsJsonConverter.cs index 1bbdfde..213a59b 100644 --- a/JenkinsTray/Utils/Serialization/CredentialsJsonConverter.cs +++ b/JenkinsTray/Utils/Serialization/CredentialsJsonConverter.cs @@ -3,9 +3,9 @@ using System.Linq; using System.Text; using Newtonsoft.Json; -using Jenkins.Tray.Entities; +using JenkinsTray.Entities; -namespace Jenkins.Tray.Utils.Serialization +namespace JenkinsTray.Utils.Serialization { class CredentialsJsonConverter : JsonConverter { diff --git a/JenkinsTray/Utils/StringUtils.cs b/JenkinsTray/Utils/StringUtils.cs index 3d392f7..86da769 100644 --- a/JenkinsTray/Utils/StringUtils.cs +++ b/JenkinsTray/Utils/StringUtils.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { public static class StringUtils { diff --git a/JenkinsTray/Utils/ThreadExceptionHandler.cs b/JenkinsTray/Utils/ThreadExceptionHandler.cs index 3f71bb0..7dceb2d 100644 --- a/JenkinsTray/Utils/ThreadExceptionHandler.cs +++ b/JenkinsTray/Utils/ThreadExceptionHandler.cs @@ -7,10 +7,10 @@ using Common.Logging; -using Jenkins.Tray.Utils.Logging; +using JenkinsTray.Utils.Logging; using DevExpress.XtraEditors; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { static class ThreadExceptionHandler { diff --git a/JenkinsTray/Utils/UIUtils.cs b/JenkinsTray/Utils/UIUtils.cs index 0d58afb..119b70f 100644 --- a/JenkinsTray/Utils/UIUtils.cs +++ b/JenkinsTray/Utils/UIUtils.cs @@ -7,7 +7,7 @@ using DevExpress.XtraEditors; using System.Windows.Forms; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { public static class UIUtils { diff --git a/JenkinsTray/Utils/Web/CookieAwareWebClient.cs b/JenkinsTray/Utils/Web/CookieAwareWebClient.cs index e5e0c7c..b0f7376 100644 --- a/JenkinsTray/Utils/Web/CookieAwareWebClient.cs +++ b/JenkinsTray/Utils/Web/CookieAwareWebClient.cs @@ -3,7 +3,7 @@ using System.Text; using System.Net; -namespace Jenkins.Tray.Utils.Web +namespace JenkinsTray.Utils.Web { public class CookieAwareWebClient : WebClient { diff --git a/JenkinsTray/Utils/XmlUtils.cs b/JenkinsTray/Utils/XmlUtils.cs index 37728f7..a25b04f 100644 --- a/JenkinsTray/Utils/XmlUtils.cs +++ b/JenkinsTray/Utils/XmlUtils.cs @@ -3,7 +3,7 @@ using System.Text; using System.Xml; -namespace Jenkins.Tray.Utils +namespace JenkinsTray.Utils { public static class XmlUtils {