2017-09-21 18:16:49 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
2017-09-27 18:32:16 -04:00
|
|
|
|
using ShiftOS.Main.ShiftOS;
|
2017-09-21 18:16:49 -04:00
|
|
|
|
|
2017-09-23 12:17:59 -04:00
|
|
|
|
namespace ShiftOS.Main
|
2017-09-21 18:16:49 -04:00
|
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2017-09-27 18:32:16 -04:00
|
|
|
|
|
|
|
|
|
Parallel.Invoke(
|
|
|
|
|
() => Application.Run(new TestForm()),
|
|
|
|
|
() => Application.Run(new Desktop()));
|
2017-09-21 18:16:49 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|