我正在使用WixSharp
构建安装程序。
如何仅在期间不显示用户自定义错误消息silent install
?我的意思是 - 运行通过GUI
将显示错误,只有通过silent install
不。
例如添加禁用修复的自定义消息:
installer.Load += e =>
{
if (e.IsRepairing)
{
MessageBox.Show("Repair is not supported");
e.Result = ActionResult.UserExit;
}
};
我在repair
通过 GUI 或通过静默模式运行时遇到上述错误。我只想通过 GUI 模式获得它。