Move IConfiguration to current namespace

This commit is contained in:
2022-04-09 03:29:48 +02:00
parent d0fc1235a9
commit 050ad1ad9c
9 changed files with 11 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
using System.Drawing;
using VAR.ScreenAutomation.Interfaces;
using VAR.Toolbox.Code.Configuration;
namespace VAR.Toolbox.Code.Bots
{

View File

@@ -1,5 +1,5 @@
using System.Drawing;
using VAR.ScreenAutomation.Interfaces;
using VAR.Toolbox.Code.Configuration;
namespace VAR.Toolbox.Code.Bots
{

View File

@@ -3,8 +3,7 @@ using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using VAR.ScreenAutomation.Code;
using VAR.ScreenAutomation.Interfaces;
using VAR.Toolbox.Code.Configuration;
namespace VAR.Toolbox.Code.Bots
{

View File

@@ -2,9 +2,8 @@
using System.Collections.Generic;
using System.IO;
using System.Text;
using VAR.ScreenAutomation.Interfaces;
namespace VAR.ScreenAutomation.Code
namespace VAR.Toolbox.Code.Configuration
{
public class FileBackedConfiguration : IConfiguration
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace VAR.ScreenAutomation.Interfaces
namespace VAR.Toolbox.Code.Configuration
{
public interface IConfiguration
{

View File

@@ -1,9 +1,8 @@
using System;
using System.Collections.Generic;
using System.Linq;
using VAR.ScreenAutomation.Interfaces;
namespace VAR.ScreenAutomation.Code
namespace VAR.Toolbox.Code.Configuration
{
public class MemoryBackedConfiguration : IConfiguration
{

View File

@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows.Forms;
using VAR.ScreenAutomation.Code;
using VAR.Toolbox.Code.Configuration;
namespace VAR.ScreenAutomation
{

View File

@@ -4,9 +4,9 @@ using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using VAR.ScreenAutomation.Code;
using VAR.ScreenAutomation.Interfaces;
using VAR.Toolbox.Code;
using VAR.Toolbox.Code.Bots;
using VAR.Toolbox.Code.Configuration;
using Mouse = VAR.ScreenAutomation.Code.Mouse;
using Screenshoter = VAR.ScreenAutomation.Code.Screenshoter;

View File

@@ -82,12 +82,12 @@
<Compile Include="Code\Bots\Screenshoter.cs" />
<Compile Include="Code\Bots\TetrisBot.cs" />
<Compile Include="Code\Bots\WindowHandling.cs" />
<Compile Include="Code\Configuration\FileBackedConfiguration.cs" />
<Compile Include="Code\Configuration\IConfiguration.cs" />
<Compile Include="Code\Configuration\MemoryBackedConfiguration.cs" />
<Compile Include="Code\EventDispatcher.cs" />
<Compile Include="Code\FileBackedConfiguration.cs" />
<Compile Include="Code\HexUtils.cs" />
<Compile Include="Code\IConfiguration.cs" />
<Compile Include="Code\IEventListener.cs" />
<Compile Include="Code\MemoryBackedConfiguration.cs" />
<Compile Include="Code\ProxyCmdExecutors\ProxyCmdExecutorWMIC.cs" />
<Compile Include="Code\ReflectionUtils.cs" />
<Compile Include="Code\TextCoders\TextCoderBase64Utf8.cs" />