naps2/NAPS2.App.WinForms/Program.cs
Ben Olden-Cooligan b62100fb07 Remove unused usings
No longer keeping System, System.Collections.Generic, System.Linq
2019-07-14 11:26:56 -04:00

19 lines
433 B
C#

using System;
using NAPS2.EntryPoints;
namespace NAPS2
{
static class Program
{
/// <summary>
/// The NAPS2.exe main method.
/// </summary>
[STAThread]
static void Main(string[] args)
{
// Use reflection to avoid antivirus false positives (yes, really)
typeof(WinFormsEntryPoint).GetMethod("Run").Invoke(null, new object[] { args });
}
}
}