mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-29 13:00:35 +00:00
19 lines
386 B
C#
19 lines
386 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DnsServerTrayIcon
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.Run(new MainApplicationContext());
|
|
}
|
|
}
|
|
}
|