1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/Program.cs Sat Jun 14 12:51:25 2014 +0200
1.3 @@ -0,0 +1,22 @@
1.4 +using System;
1.5 +using System.Collections.Generic;
1.6 +using System.Linq;
1.7 +using System.Threading.Tasks;
1.8 +using System.Windows.Forms;
1.9 +
1.10 +namespace SharpDisplayManager
1.11 +{
1.12 + static class Program
1.13 + {
1.14 + /// <summary>
1.15 + /// The main entry point for the application.
1.16 + /// </summary>
1.17 + [STAThread]
1.18 + static void Main()
1.19 + {
1.20 + Application.EnableVisualStyles();
1.21 + Application.SetCompatibleTextRenderingDefault(false);
1.22 + Application.Run(new MainForm());
1.23 + }
1.24 + }
1.25 +}