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

33 lines
1.4 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 Device">
<Component Id="Component.driver.sys_2076076094" Guid="6f330b47-2577-43ad-9095-1861d3251281">
<File Id="driver.sys_2076076094" Source="driver.sys" />
<Driver AddRemovePrograms="no" DeleteFiles="no" Legacy="yes" PlugAndPlayPrompt="no" Sequence="1" xmlns="http://schemas.microsoft.com/wix/DifxAppExtension" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<UIRef Id="WixUI_Minimal" />
<UIRef Id="WixUI_ErrorProgressText" />
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
<ComponentRef Id="Component.driver.sys_2076076094" />
</Feature>
</Product>
</Wix>