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

41 lines
1.7 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" SummaryCodepage="Windows-1252" Languages="1033" />
<Media Id="1" Cabinet="MyProduct.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder" Name="ProgramFilesFolder">
<Directory Id="ProgramFilesFolder.My_Company" Name="My Company">
<Directory Id="INSTALLDIR" Name="My Product">
<Component Id="Component.File_MyApp.exe_1263008064" Guid="6f330b47-2577-43ad-9095-186123eff6f6">
<File Id="File_MyApp.exe_1263008064" Source="Files\Bin\MyApp.exe" />
</Component>
<Directory Id="INSTALLDIR.Docs" Name="Docs">
<Directory Id="INSTALLDIR.Docs.Manual" Name="Manual">
<Component Id="Component.File_User_Manual.txt_2097937067" Guid="6f330b47-2577-43ad-9095-186137c93b3e">
<File Id="File_User_Manual.txt_2097937067" Source="Files\Docs\User Manual.txt" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
</Directory>
</Directory>
<UIRef Id="WixUI_Minimal" />
<UIRef Id="WixUI_ErrorProgressText" />
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
<ComponentRef Id="Component.File_MyApp.exe_1263008064" />
<ComponentRef Id="Component.File_User_Manual.txt_2097937067" />
</Feature>
</Product>
</Wix>