diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-01-01 00:26:30 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@robmensching.com> | 2019-01-01 09:58:27 -0800 |
| commit | 41622a07f82c57cf3d80393b0b6914f5ccb76e33 (patch) | |
| tree | 8b42a4903f4a98161b44049dd7f73721de6011b0 /src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs | |
| parent | e8cb78045d7d03b5014e1e6d781b71165db9b17d (diff) | |
| download | wix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.tar.gz wix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.tar.bz2 wix-41622a07f82c57cf3d80393b0b6914f5ccb76e33.zip | |
Load .wixlib intermediates with single creator
Using a single creator ensures definitions are shared and consistent
across the entire build.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs new file mode 100644 index 00000000..0e8e9795 --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/ComplexExampleExtension/Package.wxs | |||
| @@ -0,0 +1,26 @@ | |||
| 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="no" InstallScope="perMachine" /> | ||
| 5 | |||
| 6 | <MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" /> | ||
| 7 | <MediaTemplate /> | ||
| 8 | |||
| 9 | <Property Id="ExampleProperty" Value="$(ex.Test)" /> | ||
| 10 | |||
| 11 | <PropertyRef Id="PropertyFromExampleWir" /> | ||
| 12 | |||
| 13 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | ||
| 14 | <ComponentGroupRef Id="ProductComponents" /> | ||
| 15 | <ComponentGroupRef Id="OtherComponents" /> | ||
| 16 | </Feature> | ||
| 17 | </Product> | ||
| 18 | |||
| 19 | <Fragment> | ||
| 20 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 21 | <Directory Id="ProgramFilesFolder"> | ||
| 22 | <Directory Id="INSTALLFOLDER" Name="MsiPackage" /> | ||
| 23 | </Directory> | ||
| 24 | </Directory> | ||
| 25 | </Fragment> | ||
| 26 | </Wix> | ||
