Hi,
When using elevatedmanagedaction in WixSharp, I get the following generated Wix file:
<CustomAction Id="Action2_SetJavaEnvironment" BinaryKey="Action2_SetJavaEnvironment_File" DllEntry="SetJavaEnvironment" Return="check" Impersonate="no" Execute="deferred" />
Thanks!
When using elevatedmanagedaction in WixSharp, I get the following generated Wix file:
<CustomAction Id="Action2_SetJavaEnvironment" BinaryKey="Action2_SetJavaEnvironment_File" DllEntry="SetJavaEnvironment" Return="check" Impersonate="no" Execute="deferred" />
<CustomAction Id="Action3_RemoveJavaEnvironment" BinaryKey="Action2_SetJavaEnvironment_File" DllEntry="RemoveJavaEnvironment" Return="check" Impersonate="no" Execute="deferred" />
<Binary Id="Action2_SetJavaEnvironment_File" SourceFile="C:\Public\MergeModules\CustomActions.CA.dll" />
Is it possible to change the id of the binary node generated by creating an elevatedmanagedaction in WixSharp? I will also need to change the BinaryKey of the customaction nodes to match that new id.Thanks!