X-Git-Url: http://git.linex4red.de/pub/lufa.git/blobdiff_plain/b68f7f16499a96e85c7cef4afd9da1a5c69e6a08..5d5e3590762745af400e8ba736d1c5692a5de521:/Projects/TemperatureDataLogger/TempLogHostApp/Program.cs diff --git a/Projects/TemperatureDataLogger/TempLogHostApp/Program.cs b/Projects/TemperatureDataLogger/TempLogHostApp/Program.cs new file mode 100644 index 000000000..dc818c822 --- /dev/null +++ b/Projects/TemperatureDataLogger/TempLogHostApp/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace Project1HostApp +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmDataloggerSettings()); + } + } +}