From 714fe735de715d0f35e376e7470952a56c6f1381 Mon Sep 17 00:00:00 2001 From: Typic Date: Sat, 30 Jul 2016 00:44:39 -0700 Subject: [PATCH] Add project files. --- EBS POC.sln | 22 ++++ EBS POC/App.config | 6 + EBS POC/App.xaml | 9 ++ EBS POC/App.xaml.cs | 17 +++ EBS POC/Controls/Connect_Page.xaml | 15 +++ EBS POC/Controls/Connect_Page.xaml.cs | 53 ++++++++ EBS POC/Controls/Deploy_Page.xaml | 15 +++ EBS POC/Controls/Deploy_Page.xaml.cs | 70 ++++++++++ EBS POC/Controls/EBS_Page.xaml | 26 ++++ EBS POC/Controls/EBS_Page.xaml.cs | 45 +++++++ EBS POC/Controls/Start_Page.xaml | 17 +++ EBS POC/Controls/Start_Page.xaml.cs | 38 ++++++ EBS POC/Controls/Worker_Window.xaml | 23 ++++ EBS POC/Controls/Worker_Window.xaml.cs | 87 ++++++++++++ EBS POC/EBS POC.csproj | 149 +++++++++++++++++++++ EBS POC/MainWindow.xaml | 10 ++ EBS POC/MainWindow.xaml.cs | 45 +++++++ EBS POC/Models/Main_Model.cs | 30 +++++ EBS POC/Models/Master_File.cs | 22 ++++ EBS POC/Models/Worker.cs | 28 ++++ EBS POC/Properties/AssemblyInfo.cs | 55 ++++++++ EBS POC/Properties/Resources.Designer.cs | 63 +++++++++ EBS POC/Properties/Resources.resx | 117 ++++++++++++++++ EBS POC/Properties/Settings.Designer.cs | 26 ++++ EBS POC/Properties/Settings.settings | 7 + EBS POC/Sockets.cs | 185 ++++++++++++++++++++++++++ EBS POC/Utilities/FilePlus.cs | 220 +++++++++++++++++++++++++++++++ EBS POC/Utilities/JsonHelper.cs | 56 ++++++++ 28 files changed, 1456 insertions(+) create mode 100644 EBS POC.sln create mode 100644 EBS POC/App.config create mode 100644 EBS POC/App.xaml create mode 100644 EBS POC/App.xaml.cs create mode 100644 EBS POC/Controls/Connect_Page.xaml create mode 100644 EBS POC/Controls/Connect_Page.xaml.cs create mode 100644 EBS POC/Controls/Deploy_Page.xaml create mode 100644 EBS POC/Controls/Deploy_Page.xaml.cs create mode 100644 EBS POC/Controls/EBS_Page.xaml create mode 100644 EBS POC/Controls/EBS_Page.xaml.cs create mode 100644 EBS POC/Controls/Start_Page.xaml create mode 100644 EBS POC/Controls/Start_Page.xaml.cs create mode 100644 EBS POC/Controls/Worker_Window.xaml create mode 100644 EBS POC/Controls/Worker_Window.xaml.cs create mode 100644 EBS POC/EBS POC.csproj create mode 100644 EBS POC/MainWindow.xaml create mode 100644 EBS POC/MainWindow.xaml.cs create mode 100644 EBS POC/Models/Main_Model.cs create mode 100644 EBS POC/Models/Master_File.cs create mode 100644 EBS POC/Models/Worker.cs create mode 100644 EBS POC/Properties/AssemblyInfo.cs create mode 100644 EBS POC/Properties/Resources.Designer.cs create mode 100644 EBS POC/Properties/Resources.resx create mode 100644 EBS POC/Properties/Settings.Designer.cs create mode 100644 EBS POC/Properties/Settings.settings create mode 100644 EBS POC/Sockets.cs create mode 100644 EBS POC/Utilities/FilePlus.cs create mode 100644 EBS POC/Utilities/JsonHelper.cs diff --git a/EBS POC.sln b/EBS POC.sln new file mode 100644 index 0000000..a8a909f --- /dev/null +++ b/EBS POC.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25123.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EBS POC", "EBS POC\EBS POC.csproj", "{984AA6FE-09F6-4CFB-ACB4-023CB59DFFAA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {984AA6FE-09F6-4CFB-ACB4-023CB59DFFAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {984AA6FE-09F6-4CFB-ACB4-023CB59DFFAA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {984AA6FE-09F6-4CFB-ACB4-023CB59DFFAA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {984AA6FE-09F6-4CFB-ACB4-023CB59DFFAA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/EBS POC/App.config b/EBS POC/App.config new file mode 100644 index 0000000..bae5d6d --- /dev/null +++ b/EBS POC/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/EBS POC/App.xaml b/EBS POC/App.xaml new file mode 100644 index 0000000..66dc192 --- /dev/null +++ b/EBS POC/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/EBS POC/App.xaml.cs b/EBS POC/App.xaml.cs new file mode 100644 index 0000000..ee4341f --- /dev/null +++ b/EBS POC/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace EBS_POC +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/EBS POC/Controls/Connect_Page.xaml b/EBS POC/Controls/Connect_Page.xaml new file mode 100644 index 0000000..0b38cc4 --- /dev/null +++ b/EBS POC/Controls/Connect_Page.xaml @@ -0,0 +1,15 @@ + + + + +