Mk0.Software.Massendrucker/Mk0.Software.Massendrucker/Program.cs

20 lines
443 B
C#
Raw Normal View History

2019-03-08 16:22:20 +01:00
using System;
using System.Windows.Forms;
2019-03-22 22:39:09 +01:00
namespace Mk0.Software.Massendrucker
2019-03-08 16:22:20 +01:00
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}