Skip to content

Commit

Permalink
Finish creating Progress namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
blowfishpro committed Oct 5, 2017
1 parent 7f90887 commit b0f72c2
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions ModuleManager/MMPatchLoader.cs
Expand Up @@ -14,6 +14,7 @@
using ModuleManager.Logging;
using ModuleManager.Extensions;
using ModuleManager.Utils;
using ModuleManager.Progress;
using NodeStack = ModuleManager.Collections.ImmutableStack<ConfigNode>;

namespace ModuleManager
Expand Down
1 change: 1 addition & 0 deletions ModuleManager/ModListGenerator.cs
Expand Up @@ -8,6 +8,7 @@
using ModuleManager.Extensions;
using ModuleManager.Logging;
using ModuleManager.Utils;
using ModuleManager.Progress;

namespace ModuleManager
{
Expand Down
1 change: 1 addition & 0 deletions ModuleManager/NeedsChecker.cs
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using ModuleManager.Extensions;
using ModuleManager.Logging;
using ModuleManager.Progress;
using NodeStack = ModuleManager.Collections.ImmutableStack<ConfigNode>;

namespace ModuleManager
Expand Down
1 change: 1 addition & 0 deletions ModuleManager/PatchContext.cs
@@ -1,5 +1,6 @@
using System;
using ModuleManager.Logging;
using ModuleManager.Progress;

namespace ModuleManager
{
Expand Down
1 change: 1 addition & 0 deletions ModuleManager/PatchExtractor.cs
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using System.Text.RegularExpressions;
using ModuleManager.Extensions;
using ModuleManager.Progress;

namespace ModuleManager
{
Expand Down
2 changes: 1 addition & 1 deletion ModuleManager/Progress/IPatchProgress.cs
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using NodeStack = ModuleManager.Collections.ImmutableStack<ConfigNode>;

namespace ModuleManager
namespace ModuleManager.Progress
{
public interface IPatchProgress
{
Expand Down
2 changes: 1 addition & 1 deletion ModuleManager/Progress/PatchProgress.cs
Expand Up @@ -4,7 +4,7 @@
using ModuleManager.Logging;
using NodeStack = ModuleManager.Collections.ImmutableStack<ConfigNode>;

namespace ModuleManager
namespace ModuleManager.Progress
{
public class PatchProgress : IPatchProgress
{
Expand Down
1 change: 1 addition & 0 deletions ModuleManagerTests/NeedsCheckerTest.cs
Expand Up @@ -5,6 +5,7 @@
using TestUtils;
using ModuleManager;
using ModuleManager.Logging;
using ModuleManager.Progress;

namespace ModuleManagerTests
{
Expand Down
1 change: 1 addition & 0 deletions ModuleManagerTests/PatchExtractorTest.cs
Expand Up @@ -4,6 +4,7 @@
using NSubstitute;
using TestUtils;
using ModuleManager;
using ModuleManager.Progress;

namespace ModuleManagerTests
{
Expand Down
1 change: 1 addition & 0 deletions ModuleManagerTests/Progress/PatchProgressTest.cs
Expand Up @@ -4,6 +4,7 @@
using TestUtils;
using ModuleManager;
using ModuleManager.Logging;
using ModuleManager.Progress;
using NodeStack = ModuleManager.Collections.ImmutableStack<ConfigNode>;

namespace ModuleManagerTests
Expand Down

0 comments on commit b0f72c2

Please sign in to comment.