mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-14 13:14:23 +03:00
16 lines
368 B
C#
16 lines
368 B
C#
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 });
|
|
}
|
|
} |