Open yaadm opened 4 years ago
In file: ZoneManager.cs Line 241: process.StartInfo.FileName = "server" + "." + extension.ToString();
ERROR: No such file.
FIX: (works on windows) process.StartInfo.FileName = Path.GetFileNameWithoutExtension(Tools.GetProcessPath) + Path.GetExtension(Tools.GetProcessPath);
Please fix for your future windows users.
Thank you.
In file: ZoneManager.cs Line 241: process.StartInfo.FileName = "server" + "." + extension.ToString();
ERROR: No such file.
FIX: (works on windows) process.StartInfo.FileName = Path.GetFileNameWithoutExtension(Tools.GetProcessPath) + Path.GetExtension(Tools.GetProcessPath);
Please fix for your future windows users.
Thank you.