mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
26 lines
540 B
C#
26 lines
540 B
C#
namespace AmazTool;
|
|
|
|
internal static class Program
|
|
{
|
|
[STAThread]
|
|
private static void Main(string[] args)
|
|
{
|
|
if (args.Length == 0)
|
|
{
|
|
Console.WriteLine(Resx.Resource.Guidelines);
|
|
Thread.Sleep(5000);
|
|
return;
|
|
}
|
|
|
|
var argData = Uri.UnescapeDataString(string.Join(" ", args));
|
|
if (argData.Equals("rebootas"))
|
|
{
|
|
Thread.Sleep(1000);
|
|
Utils.StartV2RayN();
|
|
return;
|
|
}
|
|
|
|
UpgradeApp.Upgrade(argData);
|
|
}
|
|
}
|