From a9114a8f2d9fb61d11b7cf04958621a84ed29c64 Mon Sep 17 00:00:00 2001 From: tmont Date: Sun, 12 Apr 2009 00:42:29 +0000 Subject: [PATCH] moved ILogHandler implementations to their own namespace --- SimpleLog.Tests/ConsoleLogHandlerTest.cs | 1 + SimpleLog/{ => LogHandlers}/ConsoleLogHandler.cs | 2 +- SimpleLog/SimpleLog.csproj | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) rename SimpleLog/{ => LogHandlers}/ConsoleLogHandler.cs (92%) diff --git a/SimpleLog.Tests/ConsoleLogHandlerTest.cs b/SimpleLog.Tests/ConsoleLogHandlerTest.cs index 85b94ce..8d74744 100644 --- a/SimpleLog.Tests/ConsoleLogHandlerTest.cs +++ b/SimpleLog.Tests/ConsoleLogHandlerTest.cs @@ -1,6 +1,7 @@ using System; using NUnit.Framework; using NUnit.Framework.SyntaxHelpers; +using SimpleLog.LogHandlers; namespace SimpleLog.Tests { [TestFixture] diff --git a/SimpleLog/ConsoleLogHandler.cs b/SimpleLog/LogHandlers/ConsoleLogHandler.cs similarity index 92% rename from SimpleLog/ConsoleLogHandler.cs rename to SimpleLog/LogHandlers/ConsoleLogHandler.cs index 228e4be..d074a37 100644 --- a/SimpleLog/ConsoleLogHandler.cs +++ b/SimpleLog/LogHandlers/ConsoleLogHandler.cs @@ -1,6 +1,6 @@ using System; -namespace SimpleLog { +namespace SimpleLog.LogHandlers { public class ConsoleLogHandler : ILogHandler { protected IMessageHandler messageHandler; diff --git a/SimpleLog/SimpleLog.csproj b/SimpleLog/SimpleLog.csproj index 277008d..ffa4358 100644 --- a/SimpleLog/SimpleLog.csproj +++ b/SimpleLog/SimpleLog.csproj @@ -48,13 +48,13 @@ - +