Merge pull request from pzhlkj6612/master

在 v2rayN.exe 所在的文件夹运行 v2rayUpgrade.exe
This commit is contained in:
2dust 2020-06-30 17:28:48 +08:00 committed by GitHub
commit 4a6b8968d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1298,7 +1298,16 @@ namespace v2rayN.Forms
try
{
string fileName = Utils.GetPath(downloadHandle.DownloadFileName);
Process process = Process.Start("v2rayUpgrade.exe", "\"" + fileName + "\"");
Process process = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = "v2rayUpgrade.exe",
Arguments = "\"" + fileName + "\"",
WorkingDirectory = Utils.StartupPath()
}
};
process.Start();
if (process.Id > 0)
{
menuExit_Click(null, null);