aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Main/Program.cs
diff options
context:
space:
mode:
authorJohn T <[email protected]>2017-11-05 18:47:46 -0500
committerJohn T <[email protected]>2017-11-05 18:47:46 -0500
commita10440a45c40652b13e883aec832a0c8ded685e8 (patch)
treeab64311e47f8e59c7c46cd50c94bec424165ecc2 /ShiftOS.Main/Program.cs
parent019da5b9ebf67b758a31dd05c4b17de66fa682f2 (diff)
downloadshiftos-rewind-a10440a45c40652b13e883aec832a0c8ded685e8.tar.gz
shiftos-rewind-a10440a45c40652b13e883aec832a0c8ded685e8.tar.bz2
shiftos-rewind-a10440a45c40652b13e883aec832a0c8ded685e8.zip
Added a half-complete ShiftFS and did some code cleanup
Diffstat (limited to 'ShiftOS.Main/Program.cs')
-rw-r--r--ShiftOS.Main/Program.cs27
1 files changed, 14 insertions, 13 deletions
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
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [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