diff options
| author | Bob Arnson <bob@joyofsetup.com> | 2018-01-08 13:12:02 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@joyofsetup.com> | 2018-01-08 13:12:02 -0500 |
| commit | 301388abc7bfe230630e33bfd96ae4af43d59fb0 (patch) | |
| tree | 7c9d2d9fbe2bdb4e6f89eb305219d4d7a217f554 /src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs | |
| parent | bfd280115ae55bf0e63f5a787c0ab3a3cf8efa32 (diff) | |
| download | wix-301388abc7bfe230630e33bfd96ae4af43d59fb0.tar.gz wix-301388abc7bfe230630e33bfd96ae4af43d59fb0.tar.bz2 wix-301388abc7bfe230630e33bfd96ae4af43d59fb0.zip | |
Add failing unit test for .NET assemblies
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs new file mode 100644 index 00000000..d9a2a34e --- /dev/null +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Assembly/Package.wxs | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
| 3 | <Product Id="*" Name="AssemblyMsiPackage" 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 | <Feature Id="ProductFeature" Title="!(loc.FeatureTitle)"> | ||
| 10 | <ComponentGroupRef Id="ProductComponents" /> | ||
| 11 | </Feature> | ||
| 12 | </Product> | ||
| 13 | |||
| 14 | <Fragment> | ||
| 15 | <Directory Id="TARGETDIR" Name="SourceDir"> | ||
| 16 | <Directory Id="ProgramFilesFolder"> | ||
| 17 | <Directory Id="INSTALLFOLDER" Name="AssemblyMsiPackage" /> | ||
| 18 | </Directory> | ||
| 19 | </Directory> | ||
| 20 | </Fragment> | ||
| 21 | </Wix> | ||
