diff --git a/VS17/Client GUI/App.config b/VS17/Client GUI/App.config
new file mode 100644
index 0000000..016d28f
--- /dev/null
+++ b/VS17/Client GUI/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/VS17/Client GUI/Client GUI.csproj b/VS17/Client GUI/Client GUI.csproj
new file mode 100644
index 0000000..3315372
--- /dev/null
+++ b/VS17/Client GUI/Client GUI.csproj
@@ -0,0 +1,116 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}
+ Exe
+ Client_GUI
+ Client GUI
+ v4.7
+ 512
+ true
+ true
+ publish\
+ true
+ Disk
+ false
+ Foreground
+ 7
+ Days
+ false
+ false
+ true
+ 0
+ 1.0.0.%2a
+ false
+ false
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ x64
+ pdbonly
+ true
+ ..\x64\Release\Client GUI\
+ TRACE
+ prompt
+ 4
+ true
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ MainWindow.cs
+
+
+
+
+
+ MainWindow.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
+ False
+ Microsoft .NET Framework 4.7 %28x86 and x64%29
+ true
+
+
+ False
+ .NET Framework 3.5 SP1
+ false
+
+
+
+
\ No newline at end of file
diff --git a/VS17/Client GUI/MainWindow.Designer.cs b/VS17/Client GUI/MainWindow.Designer.cs
new file mode 100644
index 0000000..08fe97d
--- /dev/null
+++ b/VS17/Client GUI/MainWindow.Designer.cs
@@ -0,0 +1,100 @@
+namespace Client_GUI
+{
+ partial class MainWindow
+ {
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.menuStrip1 = new System.Windows.Forms.MenuStrip();
+ this.trojanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.messageBoxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
+ this.menuStrip1.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // menuStrip1
+ //
+ this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.trojanToolStripMenuItem,
+ this.aboutToolStripMenuItem});
+ this.menuStrip1.Location = new System.Drawing.Point(0, 0);
+ this.menuStrip1.Name = "menuStrip1";
+ this.menuStrip1.Size = new System.Drawing.Size(800, 24);
+ this.menuStrip1.TabIndex = 0;
+ this.menuStrip1.Text = "menuStrip1";
+ //
+ // trojanToolStripMenuItem
+ //
+ this.trojanToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
+ this.messageBoxToolStripMenuItem});
+ this.trojanToolStripMenuItem.Name = "trojanToolStripMenuItem";
+ this.trojanToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
+ this.trojanToolStripMenuItem.Text = "Trojan";
+ //
+ // aboutToolStripMenuItem
+ //
+ this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
+ this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
+ this.aboutToolStripMenuItem.Text = "About";
+ //
+ // messageBoxToolStripMenuItem
+ //
+ this.messageBoxToolStripMenuItem.Name = "messageBoxToolStripMenuItem";
+ this.messageBoxToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
+ this.messageBoxToolStripMenuItem.Text = "Message Box";
+ this.messageBoxToolStripMenuItem.Click += new System.EventHandler(this.messageBoxToolStripMenuItem_Click);
+ //
+ // contextMenuStrip1
+ //
+ this.contextMenuStrip1.Name = "contextMenuStrip1";
+ this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
+ //
+ // MainWindow
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Controls.Add(this.menuStrip1);
+ this.MainMenuStrip = this.menuStrip1;
+ this.Name = "MainWindow";
+ this.Text = "Trojan Client GUI";
+ this.Load += new System.EventHandler(this.MainWindow_Load);
+ this.menuStrip1.ResumeLayout(false);
+ this.menuStrip1.PerformLayout();
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.MenuStrip menuStrip1;
+ private System.Windows.Forms.ToolStripMenuItem trojanToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem messageBoxToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
+ private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
+ }
+}
+
diff --git a/VS17/Client GUI/MainWindow.cs b/VS17/Client GUI/MainWindow.cs
new file mode 100644
index 0000000..e9bed15
--- /dev/null
+++ b/VS17/Client GUI/MainWindow.cs
@@ -0,0 +1,36 @@
+using System;
+using System.Windows.Forms;
+using System.Net;
+
+namespace Client_GUI
+{
+ public partial class MainWindow : Form
+ {
+ NativeClient.NativeMethods m_client;
+
+ public MainWindow()
+ {
+ try
+ {
+ m_client = new NativeClient.NativeMethods(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 20000));
+ }
+ catch (System.NullReferenceException excpt)
+ {
+ MessageBox.Show(excpt.Message);
+ }
+
+ InitializeComponent();
+ }
+
+ private void MainWindow_Load(object sender, EventArgs e)
+ {
+
+ }
+
+ private void messageBoxToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ m_client.SendCommand("message Hello");
+ Console.WriteLine("send");
+ }
+ }
+}
diff --git a/VS17/Client GUI/MainWindow.resx b/VS17/Client GUI/MainWindow.resx
new file mode 100644
index 0000000..1e1cc16
--- /dev/null
+++ b/VS17/Client GUI/MainWindow.resx
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 17, 17
+
+
+ 132, 17
+
+
\ No newline at end of file
diff --git a/VS17/Client GUI/Program.cs b/VS17/Client GUI/Program.cs
new file mode 100644
index 0000000..282a665
--- /dev/null
+++ b/VS17/Client GUI/Program.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Client_GUI
+{
+ static class Program
+ {
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new MainWindow());
+ }
+ }
+}
diff --git a/VS17/Client GUI/Properties/AssemblyInfo.cs b/VS17/Client GUI/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..37d1367
--- /dev/null
+++ b/VS17/Client GUI/Properties/AssemblyInfo.cs
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyTitle("Client GUI")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("A&A Corp")]
+[assembly: AssemblyProduct("Client GUI")]
+[assembly: AssemblyCopyright("Copyright © 2018")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("8d6aca0f-a1df-40c1-93d5-07847cfac4a8")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/VS17/Client GUI/Properties/Resources.Designer.cs b/VS17/Client GUI/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..6103ead
--- /dev/null
+++ b/VS17/Client GUI/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Client_GUI.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Client_GUI.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/VS17/Client GUI/Properties/Resources.resx b/VS17/Client GUI/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/VS17/Client GUI/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/VS17/Client GUI/Properties/Settings.Designer.cs b/VS17/Client GUI/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..302c18c
--- /dev/null
+++ b/VS17/Client GUI/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Client_GUI.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/VS17/Client GUI/Properties/Settings.settings b/VS17/Client GUI/Properties/Settings.settings
new file mode 100644
index 0000000..3964565
--- /dev/null
+++ b/VS17/Client GUI/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/VS17/Trojan.sln b/VS17/Trojan.sln
index 6bd136b..9b9a607 100644
--- a/VS17/Trojan.sln
+++ b/VS17/Trojan.sln
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2019
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Client", "Client\Client.vcxproj", "{F11194A9-333F-42E0-B420-A44F40A876B8}"
-EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Injector", "Injector\Injector.vcxproj", "{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Keylogger", "Keylogger\Keylogger.vcxproj", "{E35185BC-9B47-4C55-BF89-71094E41935E}"
@@ -19,44 +17,99 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Server", "Server\Server.vcxproj", "{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client GUI", "Client GUI\Client GUI.csproj", "{8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}"
+ ProjectSection(ProjectDependencies) = postProject
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E} = {AEEBFB0C-E8CF-4354-B570-27F07577542E}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Client Console", "Client Console\Client Console.vcxproj", "{E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Client DLL", "Client DLL\Client DLL.vcxproj", "{AEEBFB0C-E8CF-4354-B570-27F07577542E}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Debug|ARM = Debug|ARM
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
+ Release|Any CPU = Release|Any CPU
+ Release|ARM = Release|ARM
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Debug|x64.ActiveCfg = Release|x64
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Debug|x64.Build.0 = Release|x64
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Debug|x86.ActiveCfg = Debug|Win32
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Debug|x86.Build.0 = Debug|Win32
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Release|x64.ActiveCfg = Release|x64
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Release|x64.Build.0 = Release|x64
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Release|x86.ActiveCfg = Release|Win32
- {F11194A9-333F-42E0-B420-A44F40A876B8}.Release|x86.Build.0 = Release|Win32
+ {4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|ARM.ActiveCfg = Debug|Win32
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|x64.ActiveCfg = Release|x64
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|x64.Build.0 = Release|x64
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|x86.ActiveCfg = Debug|Win32
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Debug|x86.Build.0 = Debug|Win32
+ {4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Release|Any CPU.ActiveCfg = Release|Win32
+ {4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Release|ARM.ActiveCfg = Release|Win32
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Release|x64.ActiveCfg = Release|x64
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Release|x86.ActiveCfg = Release|Win32
{4BED0A64-BE5D-48EC-84B4-B128EAC7C730}.Release|x86.Build.0 = Release|Win32
+ {E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|ARM.ActiveCfg = Debug|Win32
{E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|x64.ActiveCfg = Release|x64
{E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|x64.Build.0 = Release|x64
{E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|x86.ActiveCfg = Debug|Win32
{E35185BC-9B47-4C55-BF89-71094E41935E}.Debug|x86.Build.0 = Debug|Win32
+ {E35185BC-9B47-4C55-BF89-71094E41935E}.Release|Any CPU.ActiveCfg = Release|Win32
+ {E35185BC-9B47-4C55-BF89-71094E41935E}.Release|ARM.ActiveCfg = Release|Win32
{E35185BC-9B47-4C55-BF89-71094E41935E}.Release|x64.ActiveCfg = Release|x64
{E35185BC-9B47-4C55-BF89-71094E41935E}.Release|x86.ActiveCfg = Release|Win32
{E35185BC-9B47-4C55-BF89-71094E41935E}.Release|x86.Build.0 = Release|Win32
+ {5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|ARM.ActiveCfg = Debug|Win32
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|x64.ActiveCfg = Release|x64
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|x64.Build.0 = Release|x64
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|x86.ActiveCfg = Debug|Win32
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Debug|x86.Build.0 = Debug|Win32
+ {5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|Any CPU.ActiveCfg = Release|Win32
+ {5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|ARM.ActiveCfg = Release|Win32
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|x64.ActiveCfg = Release|x64
- {5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|x64.Build.0 = Release|x64
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|x86.ActiveCfg = Release|Win32
{5587BA36-4052-4CB3-AC4F-8AA0CC8E9356}.Release|x86.Build.0 = Release|Win32
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|ARM.ActiveCfg = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|ARM.Build.0 = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|x64.Build.0 = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Debug|x86.Build.0 = Debug|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|Any CPU.Build.0 = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|ARM.ActiveCfg = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|ARM.Build.0 = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|x64.ActiveCfg = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|x86.ActiveCfg = Release|Any CPU
+ {8D6ACA0F-A1DF-40C1-93D5-07847CFAC4A8}.Release|x86.Build.0 = Release|Any CPU
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|ARM.ActiveCfg = Debug|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|x64.ActiveCfg = Debug|x64
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|x64.Build.0 = Debug|x64
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|x86.ActiveCfg = Debug|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Debug|x86.Build.0 = Debug|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|Any CPU.ActiveCfg = Release|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|ARM.ActiveCfg = Release|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|x64.ActiveCfg = Release|x64
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|x64.Build.0 = Release|x64
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|x86.ActiveCfg = Release|Win32
+ {E4D8DA5B-BBB4-4245-8F95-A1E3FD07ADB5}.Release|x86.Build.0 = Release|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|ARM.ActiveCfg = Debug|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|x64.ActiveCfg = Debug|x64
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|x64.Build.0 = Debug|x64
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|x86.ActiveCfg = Debug|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Debug|x86.Build.0 = Debug|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|Any CPU.ActiveCfg = Release|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|ARM.ActiveCfg = Release|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|x64.ActiveCfg = Release|x64
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|x64.Build.0 = Release|x64
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|x86.ActiveCfg = Release|Win32
+ {AEEBFB0C-E8CF-4354-B570-27F07577542E}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE