naps2/NAPS2.App.Mac/Program.cs
2022-10-21 21:02:32 -07:00

15 lines
347 B
C#

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