// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) 2020 All rights reserved.
//
//
// The main program.
//
// --------------------------------------------------------------------------------------------------------------------
namespace MQTTnet.TestApp.WinForm
{
using System;
using System.Windows.Forms;
///
/// The main program.
///
internal static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
private static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}