mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-10 14:28:12 +03:00
16 lines
383 B
C#
16 lines
383 B
C#
using NAPS2.EntryPoints;
|
|
|
|
namespace NAPS2.Worker;
|
|
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The NAPS2.Worker.exe main method.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
// Use reflection to avoid antivirus false positives (yes, really)
|
|
typeof(WorkerEntryPoint).GetMethod("Run").Invoke(null, new object[] { args });
|
|
}
|
|
} |