diff options
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData')
2 files changed, 37 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/DecompiledSequenceTables.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/DecompiledSequenceTables.wxs new file mode 100644 index 00000000..b8adf6e4 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/DecompiledSequenceTables.wxs | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Product Id="{74C29381-1915-4948-B8B4-5646806A0BD4}" Codepage="1252" Language="1033" Manufacturer="Example Corporation" Name="MsiPackage" UpgradeCode="{12E4699F-E774-4D05-8A01-5BDD41BBA127}" Version="1.0.0.0"> | ||
| 4 | <Package Description="MsiPackage" InstallerVersion="500" Languages="1033" Manufacturer="Example Corporation" Platform="x86" /> | ||
| 5 | <CustomAction Id="CustomAction2" Property="TestAdvtExecuteSequenceProperty" Value="1" /> | ||
| 6 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 7 | <Directory Id="ProgramFilesFolder"> | ||
| 8 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" ShortName="ykd0udtb"> | ||
| 9 | <Component Id="test.txt" Guid="{E597A58A-03CB-50D8-93E3-DABA263F233A}" Win64="no"> | ||
| 10 | <File Id="test.txt" Name="test.txt" KeyPath="yes" Source="SourceDir\\MsiPackage\test.txt" /> | ||
| 11 | </Component> | ||
| 12 | </Directory> | ||
| 13 | </Directory> | ||
| 14 | </Directory> | ||
| 15 | <Feature Id="ProductFeature" Level="1" Title="MsiPackageTitle"> | ||
| 16 | <ComponentRef Id="test.txt" /> | ||
| 17 | </Feature> | ||
| 18 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." /> | ||
| 19 | <Media Id="1" /> | ||
| 20 | <Property Id="ALLUSERS" Value="1" /> | ||
| 21 | <InstallExecuteSequence> | ||
| 22 | <Custom Action="CustomAction2" After="CostInitialize" /> | ||
| 23 | </InstallExecuteSequence> | ||
| 24 | <InstallUISequence> | ||
| 25 | <Custom Action="CustomAction2" After="CostInitialize" /> | ||
| 26 | </InstallUISequence> | ||
| 27 | <AdminExecuteSequence> | ||
| 28 | <Custom Action="CustomAction2" After="CostInitialize" /> | ||
| 29 | </AdminExecuteSequence> | ||
| 30 | <AdminUISequence> | ||
| 31 | <Custom Action="CustomAction2" After="CostInitialize" /> | ||
| 32 | </AdminUISequence> | ||
| 33 | <AdvertiseExecuteSequence> | ||
| 34 | <Custom Action="CustomAction2" After="CostInitialize" /> | ||
| 35 | </AdvertiseExecuteSequence> | ||
| 36 | </Product> | ||
| 37 | </Wix> \ No newline at end of file | ||
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/SequenceTables.msi b/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/SequenceTables.msi new file mode 100644 index 00000000..7f894091 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SequenceTables/SequenceTables.msi | |||
| Binary files differ | |||
