mirror of https://github.com/quasar/Quasar.git
Moved namespace
This commit is contained in:
parent
1e8506470f
commit
47d5081a4e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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" />
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
|
||||
namespace xClient.Core.Encryption
|
||||
namespace xClient.Core.Cryptography
|
||||
{
|
||||
public static class AES
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
|
||||
namespace xClient.Core.Encryption
|
||||
namespace xClient.Core.Cryptography
|
||||
{
|
||||
public static class SHA256
|
||||
{
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
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;
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
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
|
||||
|
|
|
@ -56,14 +56,13 @@ public bool Perform()
|
|||
|
||||
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;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
using System.Security.Cryptography;
|
||||
using System.Text;
|
||||
|
||||
namespace xServer.Core.Encryption
|
||||
namespace xServer.Core.Cryptography
|
||||
{
|
||||
public static class AES
|
||||
{
|
|
@ -5,7 +5,7 @@
|
|||
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;
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in New Issue