33 lines
1010 B
C#
33 lines
1010 B
C#
|
// --------------------------------------------------------------------------------------------------------------------
|
||
|
// <copyright file="Program.cs" company="Haemmer Electronics">
|
||
|
// Copyright (c) 2020 All rights reserved.
|
||
|
// </copyright>
|
||
|
// <summary>
|
||
|
// The main program.
|
||
|
// </summary>
|
||
|
// --------------------------------------------------------------------------------------------------------------------
|
||
|
|
||
|
namespace MQTTnet.TestApp.WinForm
|
||
|
{
|
||
|
using System;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The main program.
|
||
|
/// </summary>
|
||
|
internal static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
private static void Main()
|
||
|
{
|
||
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
||
|
Application.EnableVisualStyles();
|
||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
Application.Run(new Form1());
|
||
|
}
|
||
|
}
|
||
|
}
|