From 1a4f704d9c82d9fd8d2d08335870f5f3c966bfb2 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Fri, 7 Dec 2018 02:22:15 -0600 Subject: [PATCH] Refactor on tools project name and workspaces to reflect the goal of serving as both console tools and a backbone for a UI project. --- .../CommandProcessor/CommandEngine.cs | 2 +- RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs | 4 ++-- .../RecrownedAthenaeum.ConsoleTools.csproj | 2 ++ .../TextureAtlasTools/TexturePacker.cs | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs b/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs index 2459454..1b85046 100644 --- a/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs +++ b/RecrownedAthenaeum.ConsoleTools/CommandProcessor/CommandEngine.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace RecrownedAthenaeum.ConsoleTools.CommandProcessor +namespace RecrownedAthenaeum.Tools.CommandProcessor { internal class CommandEngine { diff --git a/RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs b/RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs index fa16ec7..28fcc6a 100644 --- a/RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs +++ b/RecrownedAthenaeum.ConsoleTools/ConsoleTools.cs @@ -1,8 +1,8 @@ -using RecrownedAthenaeum.ConsoleTools.CommandProcessor; +using RecrownedAthenaeum.Tools.CommandProcessor; using System; using System.Reflection; -namespace RecrownedAthenaeum.ConsoleTools +namespace RecrownedAthenaeum.Tools { internal class ConsoleTools { diff --git a/RecrownedAthenaeum.ConsoleTools/RecrownedAthenaeum.ConsoleTools.csproj b/RecrownedAthenaeum.ConsoleTools/RecrownedAthenaeum.ConsoleTools.csproj index aded455..e72828c 100644 --- a/RecrownedAthenaeum.ConsoleTools/RecrownedAthenaeum.ConsoleTools.csproj +++ b/RecrownedAthenaeum.ConsoleTools/RecrownedAthenaeum.ConsoleTools.csproj @@ -5,6 +5,8 @@ netcoreapp2.1 + RecrownedAthenaeum.Tools + RecrownedAthenaeum.Tools diff --git a/RecrownedAthenaeum.ConsoleTools/TextureAtlasTools/TexturePacker.cs b/RecrownedAthenaeum.ConsoleTools/TextureAtlasTools/TexturePacker.cs index a494f85..f8ceeaa 100644 --- a/RecrownedAthenaeum.ConsoleTools/TextureAtlasTools/TexturePacker.cs +++ b/RecrownedAthenaeum.ConsoleTools/TextureAtlasTools/TexturePacker.cs @@ -8,7 +8,7 @@ using System.Drawing.Imaging; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; -namespace RecrownedAthenaeum.ConsoleTools.TextureAtlasTools +namespace RecrownedAthenaeum.Tools.TextureAtlas { internal class TexturePacker : IDisposable