From d2da8a8bd51a04932479f79f95d1719b8bfd5481 Mon Sep 17 00:00:00 2001 From: "olu.ameye" Date: Thu, 11 Apr 2019 14:02:54 -0400 Subject: [PATCH] Add project files. --- MERMS-Provider.sln | 31 +++++ MERMS-Provider/App.config | 6 + MERMS-Provider/MERMS-Provider.csproj | 84 ++++++++++++ MERMS-Provider/Program.cs | 22 ++++ MERMS-Provider/Properties/AssemblyInfo.cs | 36 ++++++ .../Properties/Resources.Designer.cs | 71 +++++++++++ MERMS-Provider/Properties/Resources.resx | 117 +++++++++++++++++ .../Properties/Settings.Designer.cs | 30 +++++ MERMS-Provider/Properties/Settings.settings | 7 + MERMS-Provider/merms_start.Designer.cs | 48 +++++++ MERMS-Provider/merms_start.cs | 20 +++ MERMS-Provider/merms_start.resx | 120 ++++++++++++++++++ MERMS-Provider/start_data.cs | 14 ++ merms_svsly/Class1.cs | 8 ++ merms_svsly/merms_svsly.csproj | 7 + 15 files changed, 621 insertions(+) create mode 100644 MERMS-Provider.sln create mode 100644 MERMS-Provider/App.config create mode 100644 MERMS-Provider/MERMS-Provider.csproj create mode 100644 MERMS-Provider/Program.cs create mode 100644 MERMS-Provider/Properties/AssemblyInfo.cs create mode 100644 MERMS-Provider/Properties/Resources.Designer.cs create mode 100644 MERMS-Provider/Properties/Resources.resx create mode 100644 MERMS-Provider/Properties/Settings.Designer.cs create mode 100644 MERMS-Provider/Properties/Settings.settings create mode 100644 MERMS-Provider/merms_start.Designer.cs create mode 100644 MERMS-Provider/merms_start.cs create mode 100644 MERMS-Provider/merms_start.resx create mode 100644 MERMS-Provider/start_data.cs create mode 100644 merms_svsly/Class1.cs create mode 100644 merms_svsly/merms_svsly.csproj diff --git a/MERMS-Provider.sln b/MERMS-Provider.sln new file mode 100644 index 0000000..155691f --- /dev/null +++ b/MERMS-Provider.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.28803.156 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MERMS-Provider", "MERMS-Provider\MERMS-Provider.csproj", "{A8F2FC12-9773-4FB0-A5D1-F510C1EAC324}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "merms_svsly", "merms_svsly\merms_svsly.csproj", "{E1A9D34D-D0EA-47C6-8580-722C4CE6491C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A8F2FC12-9773-4FB0-A5D1-F510C1EAC324}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A8F2FC12-9773-4FB0-A5D1-F510C1EAC324}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A8F2FC12-9773-4FB0-A5D1-F510C1EAC324}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A8F2FC12-9773-4FB0-A5D1-F510C1EAC324}.Release|Any CPU.Build.0 = Release|Any CPU + {E1A9D34D-D0EA-47C6-8580-722C4CE6491C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1A9D34D-D0EA-47C6-8580-722C4CE6491C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1A9D34D-D0EA-47C6-8580-722C4CE6491C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1A9D34D-D0EA-47C6-8580-722C4CE6491C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {AE2D2E43-636D-42E7-AC30-F16BE20E93C0} + EndGlobalSection +EndGlobal diff --git a/MERMS-Provider/App.config b/MERMS-Provider/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/MERMS-Provider/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MERMS-Provider/MERMS-Provider.csproj b/MERMS-Provider/MERMS-Provider.csproj new file mode 100644 index 0000000..ccebc01 --- /dev/null +++ b/MERMS-Provider/MERMS-Provider.csproj @@ -0,0 +1,84 @@ + + + + + Debug + AnyCPU + {A8F2FC12-9773-4FB0-A5D1-F510C1EAC324} + WinExe + MERMS_Provider + MERMS-Provider + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + merms_start.cs + + + + + + merms_start.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/MERMS-Provider/Program.cs b/MERMS-Provider/Program.cs new file mode 100644 index 0000000..cd0de14 --- /dev/null +++ b/MERMS-Provider/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace MERMS_Provider +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new merms_start()); + } + } +} diff --git a/MERMS-Provider/Properties/AssemblyInfo.cs b/MERMS-Provider/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3d6e74d --- /dev/null +++ b/MERMS-Provider/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +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("MERMS-Provider")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MERMS-Provider")] +[assembly: AssemblyCopyright("Copyright © 2019")] +[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("a8f2fc12-9773-4fb0-a5d1-f510c1eac324")] + +// 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/MERMS-Provider/Properties/Resources.Designer.cs b/MERMS-Provider/Properties/Resources.Designer.cs new file mode 100644 index 0000000..e96d053 --- /dev/null +++ b/MERMS-Provider/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 MERMS_Provider.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("MERMS_Provider.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/MERMS-Provider/Properties/Resources.resx b/MERMS-Provider/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/MERMS-Provider/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/MERMS-Provider/Properties/Settings.Designer.cs b/MERMS-Provider/Properties/Settings.Designer.cs new file mode 100644 index 0000000..cd094b7 --- /dev/null +++ b/MERMS-Provider/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 MERMS_Provider.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/MERMS-Provider/Properties/Settings.settings b/MERMS-Provider/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/MERMS-Provider/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/MERMS-Provider/merms_start.Designer.cs b/MERMS-Provider/merms_start.Designer.cs new file mode 100644 index 0000000..d5cb94c --- /dev/null +++ b/MERMS-Provider/merms_start.Designer.cs @@ -0,0 +1,48 @@ +namespace MERMS_Provider +{ + partial class merms_start + { + /// + /// 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 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.SuspendLayout(); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Name = "Form1"; + this.Text = "Form1"; + this.WindowState = System.Windows.Forms.FormWindowState.Maximized; + this.ResumeLayout(false); + + } + + #endregion + } +} + diff --git a/MERMS-Provider/merms_start.cs b/MERMS-Provider/merms_start.cs new file mode 100644 index 0000000..e63e4b2 --- /dev/null +++ b/MERMS-Provider/merms_start.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace MERMS_Provider +{ + public partial class merms_start : Form + { + public merms_start() + { + InitializeComponent(); + } + } +} diff --git a/MERMS-Provider/merms_start.resx b/MERMS-Provider/merms_start.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/MERMS-Provider/merms_start.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/MERMS-Provider/start_data.cs b/MERMS-Provider/start_data.cs new file mode 100644 index 0000000..73bf074 --- /dev/null +++ b/MERMS-Provider/start_data.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MERMS_Provider +{ + class start_data + { + + + } +} diff --git a/merms_svsly/Class1.cs b/merms_svsly/Class1.cs new file mode 100644 index 0000000..57dfe5b --- /dev/null +++ b/merms_svsly/Class1.cs @@ -0,0 +1,8 @@ +using System; + +namespace merms_svsly +{ + public class Class1 + { + } +} diff --git a/merms_svsly/merms_svsly.csproj b/merms_svsly/merms_svsly.csproj new file mode 100644 index 0000000..9f5c4f4 --- /dev/null +++ b/merms_svsly/merms_svsly.csproj @@ -0,0 +1,7 @@ + + + + netstandard2.0 + + +