Move IConfiguration to current namespace
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
using VAR.Toolbox.Code.Configuration;
|
||||||
|
|
||||||
namespace VAR.Toolbox.Code.Bots
|
namespace VAR.Toolbox.Code.Bots
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
using VAR.Toolbox.Code.Configuration;
|
||||||
|
|
||||||
namespace VAR.Toolbox.Code.Bots
|
namespace VAR.Toolbox.Code.Bots
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -3,8 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using VAR.ScreenAutomation.Code;
|
using VAR.Toolbox.Code.Configuration;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
|
||||||
|
|
||||||
namespace VAR.Toolbox.Code.Bots
|
namespace VAR.Toolbox.Code.Bots
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,9 +2,8 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
|
||||||
|
|
||||||
namespace VAR.ScreenAutomation.Code
|
namespace VAR.Toolbox.Code.Configuration
|
||||||
{
|
{
|
||||||
public class FileBackedConfiguration : IConfiguration
|
public class FileBackedConfiguration : IConfiguration
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace VAR.ScreenAutomation.Interfaces
|
namespace VAR.Toolbox.Code.Configuration
|
||||||
{
|
{
|
||||||
public interface IConfiguration
|
public interface IConfiguration
|
||||||
{
|
{
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
|
||||||
|
|
||||||
namespace VAR.ScreenAutomation.Code
|
namespace VAR.Toolbox.Code.Configuration
|
||||||
{
|
{
|
||||||
public class MemoryBackedConfiguration : IConfiguration
|
public class MemoryBackedConfiguration : IConfiguration
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using VAR.ScreenAutomation.Code;
|
using VAR.Toolbox.Code.Configuration;
|
||||||
|
|
||||||
namespace VAR.ScreenAutomation
|
namespace VAR.ScreenAutomation
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ using System.Drawing;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using VAR.ScreenAutomation.Code;
|
using VAR.ScreenAutomation.Code;
|
||||||
using VAR.ScreenAutomation.Interfaces;
|
|
||||||
using VAR.Toolbox.Code;
|
using VAR.Toolbox.Code;
|
||||||
using VAR.Toolbox.Code.Bots;
|
using VAR.Toolbox.Code.Bots;
|
||||||
|
using VAR.Toolbox.Code.Configuration;
|
||||||
using Mouse = VAR.ScreenAutomation.Code.Mouse;
|
using Mouse = VAR.ScreenAutomation.Code.Mouse;
|
||||||
using Screenshoter = VAR.ScreenAutomation.Code.Screenshoter;
|
using Screenshoter = VAR.ScreenAutomation.Code.Screenshoter;
|
||||||
|
|
||||||
|
|||||||
@@ -82,12 +82,12 @@
|
|||||||
<Compile Include="Code\Bots\Screenshoter.cs" />
|
<Compile Include="Code\Bots\Screenshoter.cs" />
|
||||||
<Compile Include="Code\Bots\TetrisBot.cs" />
|
<Compile Include="Code\Bots\TetrisBot.cs" />
|
||||||
<Compile Include="Code\Bots\WindowHandling.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\EventDispatcher.cs" />
|
||||||
<Compile Include="Code\FileBackedConfiguration.cs" />
|
|
||||||
<Compile Include="Code\HexUtils.cs" />
|
<Compile Include="Code\HexUtils.cs" />
|
||||||
<Compile Include="Code\IConfiguration.cs" />
|
|
||||||
<Compile Include="Code\IEventListener.cs" />
|
<Compile Include="Code\IEventListener.cs" />
|
||||||
<Compile Include="Code\MemoryBackedConfiguration.cs" />
|
|
||||||
<Compile Include="Code\ProxyCmdExecutors\ProxyCmdExecutorWMIC.cs" />
|
<Compile Include="Code\ProxyCmdExecutors\ProxyCmdExecutorWMIC.cs" />
|
||||||
<Compile Include="Code\ReflectionUtils.cs" />
|
<Compile Include="Code\ReflectionUtils.cs" />
|
||||||
<Compile Include="Code\TextCoders\TextCoderBase64Utf8.cs" />
|
<Compile Include="Code\TextCoders\TextCoderBase64Utf8.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user