From a10440a45c40652b13e883aec832a0c8ded685e8 Mon Sep 17 00:00:00 2001 From: John T Date: Sun, 5 Nov 2017 18:47:46 -0500 Subject: Added a half-complete ShiftFS and did some code cleanup --- ShiftOS.Main/Program.cs | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'ShiftOS.Main/Program.cs') diff --git a/ShiftOS.Main/Program.cs b/ShiftOS.Main/Program.cs index 10277b0..99776dc 100644 --- a/ShiftOS.Main/Program.cs +++ b/ShiftOS.Main/Program.cs @@ -2,23 +2,24 @@ using System.Threading.Tasks; using System.Windows.Forms; using ShiftOS.Main.ShiftOS; +using ShiftOS.Main.ShiftOS.Apps; namespace ShiftOS.Main { - static class Program - { - /// - /// The main entry point for the application. - /// - [STAThread] - static void Main() - { - Application.EnableVisualStyles(); - Application.SetCompatibleTextRenderingDefault(false); + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); Parallel.Invoke( () => Application.Run(new TestForm()), () => Application.Run(new Desktop())); - } - } -} + } + } +} \ No newline at end of file -- cgit v1.2.3