summaryrefslogtreecommitdiff
path: root/vsprojects/InstallerUpdater/Program.cs
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@zerotier.com>2013-08-29 12:36:24 -0400
committerAdam Ierymenko <adam.ierymenko@zerotier.com>2013-08-29 12:36:24 -0400
commit1bd3cd422512d7d5fc562950cfaa6dee22a3c0a4 (patch)
tree4cece49572f39f1b7972a8140c70b87087073319 /vsprojects/InstallerUpdater/Program.cs
parent6882c374c9c4ebe059ad2d0e65726a908e053cd7 (diff)
downloadinfinitytier-1bd3cd422512d7d5fc562950cfaa6dee22a3c0a4.tar.gz
infinitytier-1bd3cd422512d7d5fc562950cfaa6dee22a3c0a4.zip
Forgot to add new files in previous commit.
Diffstat (limited to 'vsprojects/InstallerUpdater/Program.cs')
-rw-r--r--vsprojects/InstallerUpdater/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/vsprojects/InstallerUpdater/Program.cs b/vsprojects/InstallerUpdater/Program.cs
new file mode 100644
index 00000000..d7f1996e
--- /dev/null
+++ b/vsprojects/InstallerUpdater/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace InstallerUpdater
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new MainForm());
+ }
+ }
+}