Add first lot of AVRStudio project files for some of the library projects.
[pub/lufa.git] / Projects / TempDataLogger / TempLogHostApp / Program.cs
diff --git a/Projects/TempDataLogger/TempLogHostApp/Program.cs b/Projects/TempDataLogger/TempLogHostApp/Program.cs
new file mode 100644 (file)
index 0000000..2588e60
--- /dev/null
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Windows.Forms;
+
+namespace Project1HostApp
+{
+    static class Program
+    {
+        /// <summary>
+        /// The main entry point for the application.
+        /// </summary>
+        [STAThread]
+        static void Main()
+        {
+            Application.EnableVisualStyles();
+            Application.SetCompatibleTextRenderingDefault(false);
+            Application.Run(new frmDataloggerSettings());
+        }
+    }
+}