SymphonyElectron/installer/win/WixSharpToolset/Samples/Install on x64/MyProduct.wxs
2020-08-21 08:25:55 +02:00

55 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="6f330b47-2577-43ad-9095-1861ca25889c" Name="MyProduct" Language="1033" Codepage="Windows-1252" Version="1.0.0.0" UpgradeCode="6f330b47-2577-43ad-9095-1861ba25889b" Manufacturer="oleg.shilo">
<Package InstallerVersion="200" Compressed="yes" Platform="x64" SummaryCodepage="Windows-1252" Languages="1033" />
<Media Id="1" Cabinet="MyProduct.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder" Name="ProgramFiles64Folder">
<Directory Id="ProgramFiles64Folder.My_Company" Name="My Company">
<Directory Id="INSTALLDIR" Name="My Product">
<Component Id="Component.MyApp.exe_1712224215" Guid="6f330b47-2577-43ad-9095-18610a86e369" Win64="yes">
<File Id="MyApp.exe_1712224215" Source="Files\Bin\MyApp.exe" />
</Component>
<Directory Id="INSTALLDIR.Docs" Name="Docs">
<Directory Id="INSTALLDIR.Docs.Manual" Name="Manual">
<Component Id="Component.Manual.txt_538200640" Guid="6f330b47-2577-43ad-9095-186125b9d75f" Win64="yes">
<File Id="Manual.txt_538200640" Source="Files\Docs\Manual.txt" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
</Directory>
<Directory Id="ProgramFilesFolder" Name="ProgramFilesFolder">
<Component Id="Registry.1" Guid="6f330b47-2577-43ad-9095-1861b742561a" Win64="no" KeyPath="yes">
<RegistryKey Root="HKLM" Key="Software\My Company\My Product">
<RegistryValue Id="Message" Type="string" KeyPath="no" Value="Hello" Name="Message" />
</RegistryKey>
<CreateFolder />
<RemoveFolder Id="ProgramFilesFolder" On="uninstall" />
</Component>
</Directory>
</Directory>
<UIRef Id="WixUI_Minimal" />
<UIRef Id="WixUI_ErrorProgressText" />
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
<ComponentRef Id="Component.MyApp.exe_1712224215" />
<ComponentRef Id="Component.Manual.txt_538200640" />
<ComponentRef Id="Registry.1" />
</Feature>
</Product>
</Wix>