diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite index aad9654..7d0b502 100644 Binary files a/.vs/slnx.sqlite and b/.vs/slnx.sqlite differ diff --git a/BLL/BLL.csproj b/BLL/BLL.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/BLL/BLL.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/BLL/Class1.cs b/BLL/Class1.cs new file mode 100644 index 0000000..d3929b3 --- /dev/null +++ b/BLL/Class1.cs @@ -0,0 +1,7 @@ +namespace BLL +{ + public class Class1 + { + + } +} diff --git a/Components/Class1.cs b/Components/Class1.cs new file mode 100644 index 0000000..1b9054d --- /dev/null +++ b/Components/Class1.cs @@ -0,0 +1,7 @@ +namespace Components +{ + public class Class1 + { + + } +} diff --git a/Components/Components.csproj b/Components/Components.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/Components/Components.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/DAL/Class1.cs b/DAL/Class1.cs new file mode 100644 index 0000000..4b86c4c --- /dev/null +++ b/DAL/Class1.cs @@ -0,0 +1,7 @@ +namespace DAL +{ + public class Class1 + { + + } +} diff --git a/DAL/DAL.csproj b/DAL/DAL.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/DAL/DAL.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/LevelOS/Dashboards/Base/FrmBase.Designer.cs b/LevelOS/Dashboards/Base/FrmBase.Designer.cs new file mode 100644 index 0000000..c249143 --- /dev/null +++ b/LevelOS/Dashboards/Base/FrmBase.Designer.cs @@ -0,0 +1,45 @@ +namespace LevelOS +{ + partial class Form1 + { + /// + /// 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(); + // + // Form1 + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(1185, 628); + Name = "Form1"; + Text = "Form1"; + ResumeLayout(false); + } + + #endregion + } +} diff --git a/LevelOS/Dashboards/Base/FrmBase.cs b/LevelOS/Dashboards/Base/FrmBase.cs new file mode 100644 index 0000000..10e2fb3 --- /dev/null +++ b/LevelOS/Dashboards/Base/FrmBase.cs @@ -0,0 +1,10 @@ +namespace LevelOS +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/LevelOS/Dashboards/Base/FrmBase.resx b/LevelOS/Dashboards/Base/FrmBase.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/LevelOS/Dashboards/Base/FrmBase.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/LevelOS/LevelOS.csproj b/LevelOS/LevelOS.csproj new file mode 100644 index 0000000..cd7f89f --- /dev/null +++ b/LevelOS/LevelOS.csproj @@ -0,0 +1,18 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + + + + + + + + \ No newline at end of file diff --git a/LevelOS/LevelOS.csproj.user b/LevelOS/LevelOS.csproj.user new file mode 100644 index 0000000..9afaf4c --- /dev/null +++ b/LevelOS/LevelOS.csproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + \ No newline at end of file diff --git a/LevelOS/LevelOS.slnx b/LevelOS/LevelOS.slnx new file mode 100644 index 0000000..462e7b6 --- /dev/null +++ b/LevelOS/LevelOS.slnx @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/LevelOS/Program.cs b/LevelOS/Program.cs new file mode 100644 index 0000000..be7a207 --- /dev/null +++ b/LevelOS/Program.cs @@ -0,0 +1,17 @@ +namespace LevelOS +{ + 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 Form1()); + } + } +} \ No newline at end of file diff --git a/MLL/Class1.cs b/MLL/Class1.cs new file mode 100644 index 0000000..02f7b67 --- /dev/null +++ b/MLL/Class1.cs @@ -0,0 +1,7 @@ +namespace MLL +{ + public class Class1 + { + + } +} diff --git a/MLL/MLL.csproj b/MLL/MLL.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/MLL/MLL.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/Security/Class1.cs b/Security/Class1.cs new file mode 100644 index 0000000..5ece5c6 --- /dev/null +++ b/Security/Class1.cs @@ -0,0 +1,7 @@ +namespace Security +{ + public class Class1 + { + + } +} diff --git a/Security/Security.csproj b/Security/Security.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/Security/Security.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + +