我使用 Install Shield 2013 限量版。我通过 c# 应用程序进行一些配置(customconfigs.exe)
。将在我的自定义操作中调用 c# 应用程序:
我的 c# 应用程序中定义了一些条件。当不匹配时,我想触发中止设置和回滚。如何告诉 InstallShield 中止设置?
static void Main(string[] args)
{
if(false)
{
//please abort setup
}
}
我使用 Install Shield 2013 限量版。我通过 c# 应用程序进行一些配置(customconfigs.exe)
。将在我的自定义操作中调用 c# 应用程序:
我的 c# 应用程序中定义了一些条件。当不匹配时,我想触发中止设置和回滚。如何告诉 InstallShield 中止设置?
static void Main(string[] args)
{
if(false)
{
//please abort setup
}
}