moved ILogHandler implementations to their own namespace
This commit is contained in:
parent
8193559d97
commit
a9114a8f2d
@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.SyntaxHelpers;
|
using NUnit.Framework.SyntaxHelpers;
|
||||||
|
using SimpleLog.LogHandlers;
|
||||||
|
|
||||||
namespace SimpleLog.Tests {
|
namespace SimpleLog.Tests {
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace SimpleLog {
|
namespace SimpleLog.LogHandlers {
|
||||||
public class ConsoleLogHandler : ILogHandler {
|
public class ConsoleLogHandler : ILogHandler {
|
||||||
|
|
||||||
protected IMessageHandler messageHandler;
|
protected IMessageHandler messageHandler;
|
@ -48,13 +48,13 @@
|
|||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="ConsoleLogHandler.cs" />
|
|
||||||
<Compile Include="DefaultLogger.cs" />
|
<Compile Include="DefaultLogger.cs" />
|
||||||
<Compile Include="DefaultMessageHandler.cs" />
|
<Compile Include="DefaultMessageHandler.cs" />
|
||||||
<Compile Include="ILogger.cs" />
|
<Compile Include="ILogger.cs" />
|
||||||
<Compile Include="IMessageFormatter.cs" />
|
<Compile Include="IMessageFormatter.cs" />
|
||||||
<Compile Include="ILogHandler.cs" />
|
<Compile Include="ILogHandler.cs" />
|
||||||
<Compile Include="IMessageHandler.cs" />
|
<Compile Include="IMessageHandler.cs" />
|
||||||
|
<Compile Include="LogHandlers\ConsoleLogHandler.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Util.cs" />
|
<Compile Include="Util.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user