diff --git a/eCIAv2.Library/eCIAv2.Library.csproj b/eCIAv2.Library/eCIAv2.Library.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/eCIAv2.Library/eCIAv2.Library.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/eCIAv2.WindowsApp/Forms/MainForm.Designer.cs b/eCIAv2.WindowsApp/Forms/MainForm.Designer.cs new file mode 100644 index 0000000..8a623b7 --- /dev/null +++ b/eCIAv2.WindowsApp/Forms/MainForm.Designer.cs @@ -0,0 +1,45 @@ +namespace eCIAv2.WindowsApp +{ + partial class MainForm + { + /// + /// 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() + { + SuspendLayout(); + // + // MainForm + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(800, 450); + Name = "MainForm"; + Text = "eCIAv2"; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/eCIAv2.WindowsApp/Forms/MainForm.cs b/eCIAv2.WindowsApp/Forms/MainForm.cs new file mode 100644 index 0000000..8362a47 --- /dev/null +++ b/eCIAv2.WindowsApp/Forms/MainForm.cs @@ -0,0 +1,10 @@ +namespace eCIAv2.WindowsApp +{ + public partial class MainForm : Form + { + public MainForm() + { + InitializeComponent(); + } + } +} diff --git a/eCIAv2.WindowsApp/Forms/MainForm.resx b/eCIAv2.WindowsApp/Forms/MainForm.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/eCIAv2.WindowsApp/Forms/MainForm.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/eCIAv2.WindowsApp/Program.cs b/eCIAv2.WindowsApp/Program.cs new file mode 100644 index 0000000..5db53d8 --- /dev/null +++ b/eCIAv2.WindowsApp/Program.cs @@ -0,0 +1,17 @@ +namespace eCIAv2.WindowsApp +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new MainForm()); + } + } +} \ No newline at end of file diff --git a/eCIAv2.WindowsApp/eCIAv2.WindowsApp.csproj b/eCIAv2.WindowsApp/eCIAv2.WindowsApp.csproj new file mode 100644 index 0000000..efb5204 --- /dev/null +++ b/eCIAv2.WindowsApp/eCIAv2.WindowsApp.csproj @@ -0,0 +1,15 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + + + + + \ No newline at end of file diff --git a/eCIAv2.sln b/eCIAv2.sln new file mode 100644 index 0000000..4c26cf8 --- /dev/null +++ b/eCIAv2.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36301.6 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "eCIAv2.WindowsApp", "eCIAv2.WindowsApp\eCIAv2.WindowsApp.csproj", "{CAC1890C-234B-4E67-B4DF-EB765FD43EA3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "eCIAv2.Library", "eCIAv2.Library\eCIAv2.Library.csproj", "{FD60E5CE-B67E-4EAE-A39C-C61A63AFE995}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CAC1890C-234B-4E67-B4DF-EB765FD43EA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CAC1890C-234B-4E67-B4DF-EB765FD43EA3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CAC1890C-234B-4E67-B4DF-EB765FD43EA3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CAC1890C-234B-4E67-B4DF-EB765FD43EA3}.Release|Any CPU.Build.0 = Release|Any CPU + {FD60E5CE-B67E-4EAE-A39C-C61A63AFE995}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FD60E5CE-B67E-4EAE-A39C-C61A63AFE995}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FD60E5CE-B67E-4EAE-A39C-C61A63AFE995}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FD60E5CE-B67E-4EAE-A39C-C61A63AFE995}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FAC612DB-F87B-42A8-98EB-CFCC13D77854} + EndGlobalSection +EndGlobal