mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-22 22:43:24 -06:00
68 lines
3.2 KiB
XML
68 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Product Id="fff37eac-1a0f-4340-93fb-887574c91afe" Name="My Product" Language="1033" Codepage="Windows-1252" Version="1.0.0.0" UpgradeCode="fff37eac-1a0f-4340-93fb-887564c91afd" Manufacturer="oleg.shilo">
|
|
<Package InstallerVersion="200" Compressed="yes" SummaryCodepage="Windows-1252" Languages="1033" />
|
|
<Media Id="1" Cabinet="My_Product.cab" EmbedCab="yes" />
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="ProgramFilesFolder" Name="ProgramFilesFolder">
|
|
<Directory Id="INSTALLDIR" Name="My Product">
|
|
|
|
<Component Id="Component.myapp.exe_572060024" Guid="fff37eac-1a0f-4340-93fb-8875cf30362d">
|
|
<File Id="myapp.exe_572060024" Source="myapp.exe" KeyPath="yes">
|
|
<Shortcut Id="Shortcut.myapp.exe_572060024.My_App" WorkingDirectory="INSTALLDIR" Directory="ProgramMenuFolder.My_Product" Name="My App.lnk" Advertise="yes" />
|
|
</File>
|
|
</Component>
|
|
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Directory Id="ProgramMenuFolder" Name="ProgramMenuFolder">
|
|
<Directory Id="ProgramMenuFolder.My_Product" Name="My Product">
|
|
|
|
<Component Id="Component.ProgramMenuFolder.My_Product.EmptyDirectory" Guid="fff37eac-1a0f-4340-93fb-8875b295e312">
|
|
<CreateFolder />
|
|
<RemoveFolder Id="ProgramMenuFolder.My_Product" On="uninstall" />
|
|
|
|
<RegistryKey Root="HKCU" Key="Software\WixSharp\Used">
|
|
<RegistryValue Value="0" Type="string" KeyPath="yes" />
|
|
</RegistryKey>
|
|
</Component>
|
|
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<UI />
|
|
|
|
<CustomAction Id="InstallCRTAction" BinaryKey="InstallCRTAction_File" DllEntry="InstallCRTAction" Return="check" Execute="immediate" />
|
|
<CustomAction Id="WixSharp_InitRuntime_Action" BinaryKey="WixSharp_InitRuntime_Action_File" DllEntry="WixSharp_InitRuntime_Action" Return="check" Execute="immediate" />
|
|
<CustomAction Id="WixSharp_BeforeInstall_Action" BinaryKey="WixSharp_InitRuntime_Action_File" DllEntry="WixSharp_BeforeInstall_Action" Return="check" Execute="immediate" />
|
|
|
|
<Binary Id="InstallCRTAction_File" SourceFile="%this%.CA.dll" />
|
|
<Binary Id="WixSharp_InitRuntime_Action_File" SourceFile="WixSharp.CA.dll" />
|
|
|
|
<UIRef Id="WixUI_InstallDir" />
|
|
<UIRef Id="WixUI_ErrorProgressText" />
|
|
|
|
<Property Id="WixSharp_BeforeInstall_Handlers" Value="InstallDir, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null|Script+<>c|<Main>b__1_0" />
|
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
|
|
|
|
<Feature Id="Complete" Title="Complete" Absent="allow" Level="1">
|
|
<ComponentRef Id="Component.myapp.exe_572060024" />
|
|
<ComponentRef Id="Component.ProgramMenuFolder.My_Product.EmptyDirectory" />
|
|
</Feature>
|
|
|
|
<InstallUISequence>
|
|
<Custom Action="InstallCRTAction" Before="LaunchConditions"> (NOT Installed) </Custom>
|
|
</InstallUISequence>
|
|
|
|
<InstallExecuteSequence>
|
|
<Custom Action="WixSharp_InitRuntime_Action" Before="AppSearch"> (1) </Custom>
|
|
<Custom Action="WixSharp_BeforeInstall_Action" Before="InstallFiles">1</Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
</Product>
|
|
</Wix>
|
|
|