diff options
| author | Bob Arnson <bob@joyofsetup.com> | 2017-12-04 18:33:11 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@joyofsetup.com> | 2017-12-04 18:33:11 -0500 |
| commit | e53afb01c6e01bb9e6521fa77d31e575abc73f9c (patch) | |
| tree | c26b5b22e1cfee21cb29e904f231b95dcf0dd45c /src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs | |
| parent | 95f2f4425b900374c7d7b583ae810b096121b3c4 (diff) | |
| download | wix-e53afb01c6e01bb9e6521fa77d31e575abc73f9c.tar.gz wix-e53afb01c6e01bb9e6521fa77d31e575abc73f9c.tar.bz2 wix-e53afb01c6e01bb9e6521fa77d31e575abc73f9c.zip | |
Add CanBuildSingleFileCompressed test (failing variety).
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs new file mode 100644 index 00000000..3f47d01d --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleFileCompressed/Package.wxs | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Product Id="*" Name="MsiPackage" Language="1033" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> | ||
| 4 | <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> | ||
| 5 | |||
| 6 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | ||
| 7 | <!--<MediaTemplate />--> | ||
| 8 | <Media Id="1" /> | ||
| 9 | |||
| 10 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | ||
| 11 | <ComponentGroupRef Id="ProductComponents" /> | ||
| 12 | </Feature> | ||
| 13 | </Product> | ||
| 14 | |||
| 15 | <Fragment> | ||
| 16 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 17 | <Directory Id="ProgramFilesFolder"> | ||
| 18 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | ||
| 19 | </Directory> | ||
| 20 | </Directory> | ||
| 21 | </Fragment> | ||
| 22 | </Wix> | ||
