Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/ibutton_client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'iButonManager/Program.cs')
-rw-r--r--iButonManager/Program.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/iButonManager/Program.cs b/iButonManager/Program.cs
new file mode 100644
index 0000000..570c91e
--- /dev/null
+++ b/iButonManager/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Cluster.iButtonManager
+{
+ static class Program
+ {
+ /// <summary>
+ /// Главная точка входа для приложения.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new FormIButtonManager());
+ }
+ }
+}