Last active
May 28, 2019 02:32
-
-
Save Tocchann/e30105bb09d23cad6f386057deb0484e to your computer and use it in GitHub Desktop.
Sample deferred CustomAction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | |
<Fragment> | |
<Binary Id="Foo.dll" SourceFile="Foo.dll" /> | |
<CustomAction Id="CA_FooAction" BinaryKey="Foo.dll" DllEntry="CA_FooAction" Return="check" Execute="deferred" /> | |
<SetProperty Id="CA_FooAction" Before="CA_FooAction" Sequence="execute" Value="[FooProp]" /> | |
<InstallExecuteSequence> | |
<Custom Action="CA_FooAction" After="InstallValidate" /> | |
</InstallExecuteSequence> | |
</Fragment> | |
</Wix> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
整形しなおし。。。