| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 | <Product Id="*" Name="SymbolizerWixout" Language="1033" Version="1.0.0.0" Manufacturer="FireGiant" UpgradeCode="14a02d7f-9b32-4c92-b1f1-da518bf4e32a"> |
| 4 | <Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" /> |
| 5 | |
| 6 | <MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." AllowSameVersionUpgrades="yes" IgnoreRemoveFailure="yes" /> |
| 7 | <MediaTemplate /> |
| 8 | |
| 9 | <Feature Id="ProductFeature" Title="SymbolizerWixout" Level="1"> |
| 10 | <Feature Id="ChildFeature"> |
| 11 | <ComponentGroupRef Id="ProductComponents" /> |
| 12 | </Feature> |
| 13 | </Feature> |
| 14 | |
| 15 | <PropertyRef Id="WIX_IS_NETFRAMEWORK_462_OR_LATER_INSTALLED" /> |
| 16 | <CustomActionRef Id="WixFailWhenDeferred" /> |
| 17 | <Property Id="WIXFAILWHENDEFERRED" Value="1" Secure="yes" /> |
| 18 | </Product> |
| 19 | |
| 20 | <Fragment> |
| 21 | <Directory Id="TARGETDIR" Name="SourceDir"> |
| 22 | <Directory Id="ProgramFilesFolder"> |
| 23 | <Directory Id="INSTALLFOLDER" Name="SymbolizerWixout" /> |
| 24 | </Directory> |
| 25 | </Directory> |
| 26 | </Fragment> |
| 27 | |
| 28 | <Fragment> |
| 29 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> |
| 30 | <Component Id="ProductComponent"> |
| 31 | <File Checksum="yes" ReadOnly="yes" Source="$(env.WIX)\bin\candle.exe" Assembly=".net" AssemblyApplication="candle.exe" /> |
| 32 | <RegistryValue Root="HKLM" Key="SOFTWARE\WiX Toolset" Name="[ProductName]Installed" Value="1" Type="integer" /> |
| 33 | </Component> |
| 34 | </ComponentGroup> |
| 35 | </Fragment> |
| 36 | </Wix> |