mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-14 02:29:24 +03:00
21 lines
507 B
C#
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 });
|
|
}
|
|
}
|
|
}
|