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

35 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
<Product Id="f5ad6a76-2ac2-47d9-bff7-f6992f76ead4" Name="Setup" Language="1033" Codepage="Windows-1252" Version="1.0.0.0" UpgradeCode="f5ad6a76-2ac2-47d9-bff7-f6991f76ead3" Manufacturer="oleg.shilo">
<Package InstallerVersion="200" Compressed="yes" SummaryCodepage="Windows-1252" Languages="1033" />
<Media Id="1" Cabinet="Setup.cab" EmbedCab="yes" />
<Condition Message="Please install .NET 2.0 first.">NETFRAMEWORK20="#1"</Condition>
<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.MyApp.exe_310475348" Guid="f5ad6a76-2ac2-47d9-bff7-f699aab5a291">
<File Id="MyApp.exe_310475348" Source="Files\MyApp.exe" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<PropertyRef Id="NETFRAMEWORK20" />
<UIRef Id="WixUI_Minimal" />
<UIRef Id="WixUI_ErrorProgressText" />
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
<ComponentRef Id="Component.MyApp.exe_310475348" />
</Feature>
</Product>
</Wix>