naps2/NAPS2.Console/Program.cs
2018-08-09 01:27:46 -04:00

21 lines
507 B
C#

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