如何创建自定义操作并将其链接到我的WiX设置项目?
我有:
答案 0 :(得分:0)
您需要在解决方案中为WiX v3创建新的 C#自定义操作项目。
看起来应该像这样:
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Deployment.WindowsInstaller;
namespace CustomAction
{
public class CustomActions
{
[CustomAction]
public static ActionResult CustomAction(Session session)
{
session.Log("Begin CustomAction");
return ActionResult.Success;
}
}
}
将函数名称更改为适合您的函数的名称。
之后,右键单击WiX设置项目中的 参考文件夹 ,然后选择添加参考... 。
单击选项卡项目,然后选择您的自定义操作项目。
最后一步,您需要将此代码添加到Product.wxs:
<Binary Id="CustomActionBinary" SourceFile="$(var.CUSTOMACTIONSNAME.TargetDir)$(var.CUSTOMACTIONSNAME.TargetName).CA.dll" />
<CustomAction Id="CUSTOMACTIONAME" Impersonate="no" BinaryKey="CustomActionBinary" DllEntry="CUSTOMACTIONFUNCTION" Return="check" />
您只需要在此处更改一些名称:
就这样。
如果您现在要在设置项目中调用自定义操作,则只需创建一个具有Action属性的“ Custom”元素,并将您的自定义操作ID作为值,如下所示:
<Custom Action="CreateConfig" ... />
您可以将自定义操作插入UI序列或安装序列中,如下所示:
<!--User Interface Sequence-->
<InstallUISequence>
<Custom Action='CustomAction1' Before='ExecuteAction' />
</InstallUISequence>
<!--Installation Sequence-->
<InstallExecuteSequence>
<Custom Action='CustomAction1' After='InstallInitialize'>NOT Installed</Custom>
</InstallExecuteSequence>
您还可以在对话框中的事件中调用自定义操作(仅代码段-涉及其中):
<...>
<Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="&Next">
<Publish Event="DoAction" Value="CustomAction1">1</Publish>
<...>