From 8dc0fd274fa042f0e69d6763ee79ed3f79bb7b14 Mon Sep 17 00:00:00 2001 From: EverythingWindows Date: Mon, 7 Nov 2022 07:22:01 +0700 Subject: csharp branch initialize --- ShiftOS-TheRevival-CS/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 ShiftOS-TheRevival-CS/Program.cs (limited to 'ShiftOS-TheRevival-CS/Program.cs') diff --git a/ShiftOS-TheRevival-CS/Program.cs b/ShiftOS-TheRevival-CS/Program.cs new file mode 100644 index 0000000..54e9112 --- /dev/null +++ b/ShiftOS-TheRevival-CS/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace ShiftOS_TheRevival_CS +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3