インストール中にプロジェクト ファイルを保存し、後でアンインストール プロセス中にこれらのファイルを削除しようとしているサンプルWiXプロジェクトを作成しました。これを達成するためのカスタム アクションを作成しました。以下はコードです。
ここで、UninstallCustomAction は、インストール ディレクトリを削除するためのカスタム アクションです。これは延期されたアクションであり、SetCustomActionDataValue カスタム アクションを使用して installFolder パスをそれに渡そうとしています。何らかの理由で、セッションの CustomActionData でこれらの変数にアクセスできません。ここで何が欠けていますか?
<CustomAction Id="SetCustomActionDataValue"
Return="check"
Property="Itp.Configurator.WixCustomAction"
Value="InstallFolder=[INSTALLFOLDER]" />
<CustomAction Id="UninstallCustomAction"
Return="check"
Execute="deferred"
BinaryKey="DTD.LCTOnline.Wix.CustomActions.CA.dll"
DllEntry="UninstallCustomAction"
Impersonate="no"
HideTarget="no"/>
<InstallExecuteSequence>
<Custom Action="SetCustomActionDataValue"
Before="UninstallCustomAction"></Custom>
<Custom Action="UninstallCustomAction"
Before="InstallFinalize">Installed OR UPGRADINGPRODUCTCODE</Custom>
</InstallExecuteSequence>
[CustomAction]
public static ActionResult UninstallCustomAction(Session session)
{
try
{
System.Diagnostics.Debugger.Launch();
session.Log("Begin Remove Files");
Directory.Delete(path,true);
session.Log("End Remove Files");
}
catch (Exception ex)
{
session.Log("ERROR in deleting Files", ex.ToString());
return ActionResult.Failure;
}
return ActionResult.Success;
}