| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name="Bad Property" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a"> |
| 3 | <MajorUpgrade DowngradeErrorMessage="Downgrade error message." /> |
| 4 | |
| 5 | <Property Id="AB" Value="ab[1]" /> |
| 6 | <Property Id="Break" Value="[X] [Y]" /> |
| 7 | |
| 8 | <Feature Id="ProductFeature"> |
| 9 | <Component Directory="ProgramFilesFolder" Subdirectory="MsiPackage"> |
| 10 | <File Source="BadProperty.wxs" /> |
| 11 | </Component> |
| 12 | </Feature> |
| 13 | </Package> |
| 14 | </Wix> |