ShortcutGuide.wxs
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> 2 3 <?include $(sys.CURRENTDIR)\Common.wxi?> 4 5 <?define ShortcutGuideSvgFiles=?> 6 <?define ShortcutGuideSvgFilesPath=$(var.BinDir)\Assets\ShortcutGuide\?> 7 8 <Fragment> 9 <!-- Shortcut guide files --> 10 <DirectoryRef Id="BaseApplicationsAssetsFolder"> 11 <Directory Id="ShortcutGuideSvgsInstallFolder" Name="ShortcutGuide" /> 12 </DirectoryRef> 13 <DirectoryRef Id="ShortcutGuideSvgsInstallFolder" FileSource="$(var.ShortcutGuideSvgFilesPath)"> 14 <!-- Generated by generateFileComponents.ps1 --> 15 <!--ShortcutGuideSvgFiles_Component_Def--> 16 </DirectoryRef> 17 18 <!-- Shortcut guide --> 19 <ComponentGroup Id="ShortcutGuideComponentGroup"> 20 <Component Id="RemoveShortcutGuideFolder" Guid="AD1ABC55-B593-4A60-A86A-BA8C0ED493A5" Directory="ShortcutGuideSvgsInstallFolder"> 21 <RegistryKey Root="$(var.RegistryScope)" Key="Software\Classes\powertoys\components"> 22 <RegistryValue Type="string" Name="RemoveShortcutGuideFolder" Value="" KeyPath="yes" /> 23 </RegistryKey> 24 <RemoveFolder Id="RemoveFolderShortcutGuideSvgsInstallFolder" Directory="ShortcutGuideSvgsInstallFolder" On="uninstall" /> 25 </Component> 26 </ComponentGroup> 27 28 </Fragment> 29 </Wix>