diff -r d5f6b2119a13 -r 328515997e35 IdwTest/Program.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/IdwTest/Program.cs Mon Apr 21 12:02:38 2014 +0200 @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace IdwTest +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainForm()); + } + } + +}