From c812cf47ce52eb738ccfe00f360ee00732156766 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Tue, 29 Aug 2017 10:33:19 -0400 Subject: [PATCH] Correcting namespaces --- ICD.Common.Utils/EventArguments/BoolEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/CharEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/DateTimeEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/FloatEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/GenericEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/IntEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/StringEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/TcpReceiveEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/UShortEventArgs.cs | 2 +- ICD.Common.Utils/EventArguments/XmlRecursionEventArgs.cs | 2 +- ICD.Common.Utils/Services/Logging/LogItemEventArgs.cs | 2 +- ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs | 2 +- ICD.Common.Utils/Timers/IcdTimer.cs | 2 +- ICD.Common.Utils/Xml/XmlReaderExtensions.cs | 2 +- ICD.Common.Utils/Xml/XmlUtils.cs | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ICD.Common.Utils/EventArguments/BoolEventArgs.cs b/ICD.Common.Utils/EventArguments/BoolEventArgs.cs index 8ce49a5..56d6c66 100644 --- a/ICD.Common.Utils/EventArguments/BoolEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/BoolEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class BoolEventArgs : GenericEventArgs { diff --git a/ICD.Common.Utils/EventArguments/CharEventArgs.cs b/ICD.Common.Utils/EventArguments/CharEventArgs.cs index 91b54b9..c83509b 100644 --- a/ICD.Common.Utils/EventArguments/CharEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/CharEventArgs.cs @@ -1,6 +1,6 @@ using ICD.Common.Properties; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { [PublicAPI] public sealed class CharEventArgs : GenericEventArgs diff --git a/ICD.Common.Utils/EventArguments/DateTimeEventArgs.cs b/ICD.Common.Utils/EventArguments/DateTimeEventArgs.cs index d91577c..6d5f60f 100644 --- a/ICD.Common.Utils/EventArguments/DateTimeEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/DateTimeEventArgs.cs @@ -1,6 +1,6 @@ using System; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class DateTimeEventArgs : GenericEventArgs { diff --git a/ICD.Common.Utils/EventArguments/FloatEventArgs.cs b/ICD.Common.Utils/EventArguments/FloatEventArgs.cs index 0048d70..c7b3063 100644 --- a/ICD.Common.Utils/EventArguments/FloatEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/FloatEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class FloatEventArgs : GenericEventArgs { diff --git a/ICD.Common.Utils/EventArguments/GenericEventArgs.cs b/ICD.Common.Utils/EventArguments/GenericEventArgs.cs index 442ee03..467251f 100644 --- a/ICD.Common.Utils/EventArguments/GenericEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/GenericEventArgs.cs @@ -1,6 +1,6 @@ using System; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public abstract class GenericEventArgs : EventArgs { diff --git a/ICD.Common.Utils/EventArguments/IntEventArgs.cs b/ICD.Common.Utils/EventArguments/IntEventArgs.cs index 29d80ac..84a3537 100644 --- a/ICD.Common.Utils/EventArguments/IntEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/IntEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class IntEventArgs : GenericEventArgs { diff --git a/ICD.Common.Utils/EventArguments/StringEventArgs.cs b/ICD.Common.Utils/EventArguments/StringEventArgs.cs index a126eac..56acfa8 100644 --- a/ICD.Common.Utils/EventArguments/StringEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/StringEventArgs.cs @@ -1,4 +1,4 @@ -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class StringEventArgs : GenericEventArgs { diff --git a/ICD.Common.Utils/EventArguments/TcpReceiveEventArgs.cs b/ICD.Common.Utils/EventArguments/TcpReceiveEventArgs.cs index 2d0a0f2..bd2ec96 100644 --- a/ICD.Common.Utils/EventArguments/TcpReceiveEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/TcpReceiveEventArgs.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using ICD.Common.Utils; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class TcpReceiveEventArgs : EventArgs { diff --git a/ICD.Common.Utils/EventArguments/UShortEventArgs.cs b/ICD.Common.Utils/EventArguments/UShortEventArgs.cs index 91df33b..f1abe8a 100644 --- a/ICD.Common.Utils/EventArguments/UShortEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/UShortEventArgs.cs @@ -1,6 +1,6 @@ using ICD.Common.Properties; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { [PublicAPI] public sealed class UShortEventArgs : GenericEventArgs diff --git a/ICD.Common.Utils/EventArguments/XmlRecursionEventArgs.cs b/ICD.Common.Utils/EventArguments/XmlRecursionEventArgs.cs index a421eb6..c6cfa98 100644 --- a/ICD.Common.Utils/EventArguments/XmlRecursionEventArgs.cs +++ b/ICD.Common.Utils/EventArguments/XmlRecursionEventArgs.cs @@ -1,7 +1,7 @@ using System; using ICD.Common.Properties; -namespace ICD.Common.EventArguments +namespace ICD.Common.Utils.EventArguments { public sealed class XmlRecursionEventArgs : EventArgs { diff --git a/ICD.Common.Utils/Services/Logging/LogItemEventArgs.cs b/ICD.Common.Utils/Services/Logging/LogItemEventArgs.cs index d55adf0..79abe78 100644 --- a/ICD.Common.Utils/Services/Logging/LogItemEventArgs.cs +++ b/ICD.Common.Utils/Services/Logging/LogItemEventArgs.cs @@ -1,4 +1,4 @@ -using ICD.Common.EventArguments; +using ICD.Common.Utils.EventArguments; namespace ICD.Common.Services.Logging { diff --git a/ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs b/ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs index 23b0d82..9e89d60 100644 --- a/ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs +++ b/ICD.Common.Utils/Services/Logging/SeverityEventArgs.cs @@ -1,4 +1,4 @@ -using ICD.Common.EventArguments; +using ICD.Common.Utils.EventArguments; namespace ICD.Common.Services.Logging { diff --git a/ICD.Common.Utils/Timers/IcdTimer.cs b/ICD.Common.Utils/Timers/IcdTimer.cs index 162d62d..fb2a633 100644 --- a/ICD.Common.Utils/Timers/IcdTimer.cs +++ b/ICD.Common.Utils/Timers/IcdTimer.cs @@ -1,5 +1,5 @@ using System; -using ICD.Common.EventArguments; +using ICD.Common.Utils.EventArguments; using ICD.Common.Utils.Extensions; namespace ICD.Common.Utils.Timers diff --git a/ICD.Common.Utils/Xml/XmlReaderExtensions.cs b/ICD.Common.Utils/Xml/XmlReaderExtensions.cs index 2586b36..f2b09b8 100644 --- a/ICD.Common.Utils/Xml/XmlReaderExtensions.cs +++ b/ICD.Common.Utils/Xml/XmlReaderExtensions.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; -using ICD.Common.EventArguments; +using ICD.Common.Utils.EventArguments; using ICD.Common.Properties; #if SIMPLSHARP using Crestron.SimplSharp.CrestronXml; diff --git a/ICD.Common.Utils/Xml/XmlUtils.cs b/ICD.Common.Utils/Xml/XmlUtils.cs index ee07697..0c0dde4 100644 --- a/ICD.Common.Utils/Xml/XmlUtils.cs +++ b/ICD.Common.Utils/Xml/XmlUtils.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; -using ICD.Common.EventArguments; +using ICD.Common.Utils.EventArguments; using ICD.Common.Properties; using ICD.Common.Utils.Extensions; using ICD.Common.Utils.IO;