summaryrefslogtreecommitdiff
path: root/vsprojects/InstallerUpdater/Program.cs
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2013-11-06 13:35:06 -0500
committerAdam Ierymenko <adam.ierymenko@gmail.com>2013-11-06 13:35:06 -0500
commit5d7fea20470a1c45be53e1a3c5fb1f1aa69c7714 (patch)
tree1ffc892e23799b5551d45784b662075dc679e1c4 /vsprojects/InstallerUpdater/Program.cs
parent35fe5ea166024af87f9f927c83b9d086fc087181 (diff)
downloadinfinitytier-5d7fea20470a1c45be53e1a3c5fb1f1aa69c7714.tar.gz
infinitytier-5d7fea20470a1c45be53e1a3c5fb1f1aa69c7714.zip
Delete some obsolete Windows false starts.
Diffstat (limited to 'vsprojects/InstallerUpdater/Program.cs')
-rw-r--r--vsprojects/InstallerUpdater/Program.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/vsprojects/InstallerUpdater/Program.cs b/vsprojects/InstallerUpdater/Program.cs
deleted file mode 100644
index d7f1996e..00000000
--- a/vsprojects/InstallerUpdater/Program.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-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());
- }
- }
-}