diff --git a/MTC_Sim/MTC_AdapterTest/App.config b/MTC_Sim/MTC_AdapterTest/App.config deleted file mode 100644 index 88fa402..0000000 --- a/MTC_Sim/MTC_AdapterTest/App.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/MTC_Sim/MTC_AdapterTest/MTC_AdapterTest.csproj b/MTC_Sim/MTC_AdapterTest/MTC_AdapterTest.csproj deleted file mode 100644 index 1f59d90..0000000 --- a/MTC_Sim/MTC_AdapterTest/MTC_AdapterTest.csproj +++ /dev/null @@ -1,68 +0,0 @@ - - - - - Debug - AnyCPU - {460848B8-154B-469F-915A-5E550AA68D71} - WinExe - Properties - MTC_AdapterTest - MTC_AdapterTest - v4.5.2 - 512 - true - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - false - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - Component - - - Service1.cs - - - - - - - - - - \ No newline at end of file diff --git a/MTC_Sim/MTC_AdapterTest/Program.cs b/MTC_Sim/MTC_AdapterTest/Program.cs deleted file mode 100644 index a4f9448..0000000 --- a/MTC_Sim/MTC_AdapterTest/Program.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.ServiceProcess; -using System.Text; -using System.Threading.Tasks; - -namespace MTC_AdapterTest -{ - static class Program - { - /// - /// The main entry point for the application. - /// - static void Main() - { - ServiceBase[] ServicesToRun; - ServicesToRun = new ServiceBase[] - { - new Service1() - }; - ServiceBase.Run(ServicesToRun); - } - } -} diff --git a/MTC_Sim/MTC_AdapterTest/Properties/AssemblyInfo.cs b/MTC_Sim/MTC_AdapterTest/Properties/AssemblyInfo.cs deleted file mode 100644 index 4d35ade..0000000 --- a/MTC_Sim/MTC_AdapterTest/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("MTC_AdapterTest")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("MTC_AdapterTest")] -[assembly: AssemblyCopyright("Copyright © 2016")] -[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("460848b8-154b-469f-915a-5e550aa68d71")] - -// 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/MTC_Sim/MTC_AdapterTest/Service1.Designer.cs b/MTC_Sim/MTC_AdapterTest/Service1.Designer.cs deleted file mode 100644 index 3f0766f..0000000 --- a/MTC_Sim/MTC_AdapterTest/Service1.Designer.cs +++ /dev/null @@ -1,37 +0,0 @@ -namespace MTC_AdapterTest -{ - partial class Service1 - { - /// - /// Required designer variable. - /// - 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 Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - this.ServiceName = "Service1"; - } - - #endregion - } -} diff --git a/MTC_Sim/MTC_AdapterTest/Service1.cs b/MTC_Sim/MTC_AdapterTest/Service1.cs deleted file mode 100644 index c0a6049..0000000 --- a/MTC_Sim/MTC_AdapterTest/Service1.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Diagnostics; -using System.Linq; -using System.ServiceProcess; -using System.Text; -using System.Threading.Tasks; - -namespace MTC_AdapterTest -{ - public partial class Service1 : ServiceBase - { - public Service1() - { - InitializeComponent(); - } - - protected override void OnStart(string[] args) - { - } - - protected override void OnStop() - { - } - } -}