]> granicus.if.org Git - icinga2/blob - agent/windows-setup-agent/Program.cs
ee30b986f6ae67beb62f52c13b2646d21ae08b51
[icinga2] / agent / windows-setup-agent / Program.cs
1 using System;
2 using System.Windows.Forms;
3
4 namespace Icinga
5 {
6         static class Program
7         {
8                 /// <summary>
9                 /// The main entry point for the application.
10                 /// </summary>
11                 [STAThread]
12                 static void Main()
13                 {
14                         Application.EnableVisualStyles();
15                         Application.SetCompatibleTextRenderingDefault(false);
16                         Application.Run(new AgentWizard());
17                 }
18         }
19 }