mirror of https://github.com/2dust/v2rayN
set DOTNET_EnableWriteXorExecute=0 under win10
https://github.com/2dust/v2rayN/issues/5186pull/5264/head
parent
74a0a93201
commit
9039d401da
|
@ -58,10 +58,12 @@ namespace v2rayN
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//if (RuntimeInformation.ProcessArchitecture != Architecture.X86 && RuntimeInformation.ProcessArchitecture != Architecture.X64)
|
|
||||||
//{
|
//Under Win10
|
||||||
// _config.guiItem.enableStatistics = false;
|
if (Environment.OSVersion.Version.Major < 10)
|
||||||
//}
|
{
|
||||||
|
Environment.SetEnvironmentVariable("DOTNET_EnableWriteXorExecute", "0", EnvironmentVariableTarget.Process);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
|
private void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue