diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-07-13 04:32:33 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-07-13 04:32:33 +0000 |
| commit | 141ebf6767fc36a8681958fac75ab84b6f2ccaac (patch) | |
| tree | d317751beab3b669d931f9bbff83db8680e510a9 /Projects/TempDataLogger/TempLogHostApp/Program.cs | |
| parent | 42f484e37a62f69875235d234a3ba068984ca535 (diff) | |
Add first lot of AVRStudio project files for some of the library projects.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1377 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/TempDataLogger/TempLogHostApp/Program.cs')
| -rw-r--r-- | Projects/TempDataLogger/TempLogHostApp/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Projects/TempDataLogger/TempLogHostApp/Program.cs b/Projects/TempDataLogger/TempLogHostApp/Program.cs new file mode 100644 index 00000000..2588e60c --- /dev/null +++ b/Projects/TempDataLogger/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 + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmDataloggerSettings()); + } + } +} |
