Skip to content

Commit

Permalink
7.0.0 (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Hegedus <jhegedus9@gmail.com>
  • Loading branch information
joshika39 and Joshua Hegedus committed Apr 12, 2023
1 parent d01aaf7 commit 4bd61cd
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 61 deletions.
3 changes: 1 addition & 2 deletions Solution/Implementation/Core/Bootsrapper.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using System;
using System.Reflection;
using Implementation.StandardIOManager;
using Implementation.IO;
using Infrastructure.IO;
using Infrastructure.IOManager;
using Infrastructure.Logger;
using Infrastructure.Navigator;
using Unity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
using System.IO;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Infrastructure;
using Infrastructure.IO;
using Infrastructure.Logger;

namespace Implementation.StandardIOManager
namespace Implementation.IO
{
internal class Reader : IReader
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
using System;
using Infrastructure;
using Infrastructure.IO;
using Infrastructure.Logger;

namespace Implementation.StandardIOManager
namespace Implementation.IO
{
public class Writer : IWriter
{
Expand Down
4 changes: 4 additions & 0 deletions Solution/Implementation/Implementation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@
<PackageReference Include="Unity.RegistrationByConvention" Version="5.11.1" />
</ItemGroup>

<ItemGroup>
<Folder Include="IO\Factories\" />
</ItemGroup>

</Project>
3 changes: 1 addition & 2 deletions Solution/Implementation/Navigator/Navigator.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using Implementation.StandardIOManager;
using Infrastructure.IOManager;
using Infrastructure.IO;
using Infrastructure.Navigator;

namespace Implementation.Navigator
Expand Down
16 changes: 0 additions & 16 deletions Solution/Implementation/StandardIOManager/StandardIOManager.cs

This file was deleted.

This file was deleted.

7 changes: 7 additions & 0 deletions Solution/Infrastructure/IO/Factories/IReaderFactory.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace Infrastructure.IO.Factories
{
public interface IReaderFactory
{

}
}
10 changes: 0 additions & 10 deletions Solution/Infrastructure/IO/IIOManager.cs

This file was deleted.

9 changes: 0 additions & 9 deletions Solution/Infrastructure/IO/IIOManagerFactory.cs

This file was deleted.

4 changes: 1 addition & 3 deletions Solution/Infrastructure/IO/IWriter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Infrastructure;

namespace Implementation.StandardIOManager
namespace Infrastructure.IO
{
public interface IWriter
{
Expand Down
2 changes: 1 addition & 1 deletion Solution/Tests/ImplementationTest/ReaderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Implementation.IO;
using Implementation.Logger;
using Implementation.StandardIOManager;
using Xunit;

namespace ImplementationTest
Expand Down
1 change: 0 additions & 1 deletion Solution/Tests/ManualTests/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.IO;
using Implementation.Core;
using Implementation.StandardIOManager;
using Infrastructure.IO;
using Infrastructure.Logger;
using Unity;
Expand Down

0 comments on commit 4bd61cd

Please sign in to comment.