From b0f72c293f1ae36994c73c628eca346906ba59b5 Mon Sep 17 00:00:00 2001 From: blowfish Date: Wed, 4 Oct 2017 22:55:30 -0700 Subject: [PATCH] Finish creating Progress namespace --- ModuleManager/MMPatchLoader.cs | 1 + ModuleManager/ModListGenerator.cs | 1 + ModuleManager/NeedsChecker.cs | 1 + ModuleManager/PatchContext.cs | 1 + ModuleManager/PatchExtractor.cs | 1 + ModuleManager/Progress/IPatchProgress.cs | 2 +- ModuleManager/Progress/PatchProgress.cs | 2 +- ModuleManagerTests/NeedsCheckerTest.cs | 1 + ModuleManagerTests/PatchExtractorTest.cs | 1 + ModuleManagerTests/Progress/PatchProgressTest.cs | 1 + 10 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ModuleManager/MMPatchLoader.cs b/ModuleManager/MMPatchLoader.cs index ea39eacd..0251dc62 100644 --- a/ModuleManager/MMPatchLoader.cs +++ b/ModuleManager/MMPatchLoader.cs @@ -14,6 +14,7 @@ using ModuleManager.Logging; using ModuleManager.Extensions; using ModuleManager.Utils; +using ModuleManager.Progress; using NodeStack = ModuleManager.Collections.ImmutableStack; namespace ModuleManager diff --git a/ModuleManager/ModListGenerator.cs b/ModuleManager/ModListGenerator.cs index 951fbac2..cca98805 100644 --- a/ModuleManager/ModListGenerator.cs +++ b/ModuleManager/ModListGenerator.cs @@ -8,6 +8,7 @@ using ModuleManager.Extensions; using ModuleManager.Logging; using ModuleManager.Utils; +using ModuleManager.Progress; namespace ModuleManager { diff --git a/ModuleManager/NeedsChecker.cs b/ModuleManager/NeedsChecker.cs index 32d46f3d..151bee5f 100644 --- a/ModuleManager/NeedsChecker.cs +++ b/ModuleManager/NeedsChecker.cs @@ -3,6 +3,7 @@ using System.Linq; using ModuleManager.Extensions; using ModuleManager.Logging; +using ModuleManager.Progress; using NodeStack = ModuleManager.Collections.ImmutableStack; namespace ModuleManager diff --git a/ModuleManager/PatchContext.cs b/ModuleManager/PatchContext.cs index 2e1bc3e0..ac3b7200 100644 --- a/ModuleManager/PatchContext.cs +++ b/ModuleManager/PatchContext.cs @@ -1,5 +1,6 @@ using System; using ModuleManager.Logging; +using ModuleManager.Progress; namespace ModuleManager { diff --git a/ModuleManager/PatchExtractor.cs b/ModuleManager/PatchExtractor.cs index 23964b2a..d3425918 100644 --- a/ModuleManager/PatchExtractor.cs +++ b/ModuleManager/PatchExtractor.cs @@ -3,6 +3,7 @@ using System.Linq; using System.Text.RegularExpressions; using ModuleManager.Extensions; +using ModuleManager.Progress; namespace ModuleManager { diff --git a/ModuleManager/Progress/IPatchProgress.cs b/ModuleManager/Progress/IPatchProgress.cs index 09696fec..ae7f5003 100644 --- a/ModuleManager/Progress/IPatchProgress.cs +++ b/ModuleManager/Progress/IPatchProgress.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using NodeStack = ModuleManager.Collections.ImmutableStack; -namespace ModuleManager +namespace ModuleManager.Progress { public interface IPatchProgress { diff --git a/ModuleManager/Progress/PatchProgress.cs b/ModuleManager/Progress/PatchProgress.cs index 83789632..0538b035 100644 --- a/ModuleManager/Progress/PatchProgress.cs +++ b/ModuleManager/Progress/PatchProgress.cs @@ -4,7 +4,7 @@ using ModuleManager.Logging; using NodeStack = ModuleManager.Collections.ImmutableStack; -namespace ModuleManager +namespace ModuleManager.Progress { public class PatchProgress : IPatchProgress { diff --git a/ModuleManagerTests/NeedsCheckerTest.cs b/ModuleManagerTests/NeedsCheckerTest.cs index 9a25b0e0..41430b05 100644 --- a/ModuleManagerTests/NeedsCheckerTest.cs +++ b/ModuleManagerTests/NeedsCheckerTest.cs @@ -5,6 +5,7 @@ using TestUtils; using ModuleManager; using ModuleManager.Logging; +using ModuleManager.Progress; namespace ModuleManagerTests { diff --git a/ModuleManagerTests/PatchExtractorTest.cs b/ModuleManagerTests/PatchExtractorTest.cs index fafc1030..453d56e2 100644 --- a/ModuleManagerTests/PatchExtractorTest.cs +++ b/ModuleManagerTests/PatchExtractorTest.cs @@ -4,6 +4,7 @@ using NSubstitute; using TestUtils; using ModuleManager; +using ModuleManager.Progress; namespace ModuleManagerTests { diff --git a/ModuleManagerTests/Progress/PatchProgressTest.cs b/ModuleManagerTests/Progress/PatchProgressTest.cs index 8de98c06..f7866ae6 100644 --- a/ModuleManagerTests/Progress/PatchProgressTest.cs +++ b/ModuleManagerTests/Progress/PatchProgressTest.cs @@ -4,6 +4,7 @@ using TestUtils; using ModuleManager; using ModuleManager.Logging; +using ModuleManager.Progress; using NodeStack = ModuleManager.Collections.ImmutableStack; namespace ModuleManagerTests