|
4 | 4 | <?define ProductUpgradeCode="5da343bf-7e4f-4849-acb0-da8c6682a71e"?>
|
5 | 5 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
6 | 6 | <Product Id="*" Name="Minutor" Language="1033" Version="$(var.ProductVersion)" Manufacturer="Sean Kasun" UpgradeCode="$(var.ProductUpgradeCode)">
|
7 |
| - <Package InstallerVersion="200" Compressed="yes" /> |
| 7 | + <Package InstallerVersion="300" Compressed="yes" /> |
8 | 8 | <Media Id="1" Cabinet="minutor.cab" EmbedCab="yes" CompressionLevel="high" />
|
9 | 9 |
|
10 | 10 | <Icon Id="ProductIcon" SourceFile="icon.ico" />
|
|
32 | 32 | <DirectoryRef Id="INSTALLDIR">
|
33 | 33 | <Component Id="minutor.exe" Guid="670f74ff-eb96-4003-828a-2f24e5a42539">
|
34 | 34 | <File Id="minutor.exe" Source="minutor.exe" KeyPath="yes" Checksum="yes">
|
35 |
| - <Shortcut Id="ApplicationShortcut" Directory="ApplicationProgramsFolder" Advertise="yes" Name="Minutor" |
36 |
| - WorkingDirectory="INSTALLDIR" Icon="icon.exe"> |
37 |
| - <Icon Id="icon.exe" SourceFile="icon.ico" /> |
| 35 | + <Shortcut Id="ApplicationShortcut" Directory="ApplicationProgramsFolder" Advertise="yes" Name="Minutor" WorkingDirectory="INSTALLDIR" Icon="icon.ico"> |
| 36 | + <Icon Id="icon.ico" SourceFile="icon.ico" /> |
38 | 37 | </Shortcut>
|
39 |
| - </File> |
| 38 | + </File> |
40 | 39 | <RemoveFolder Id="DeleteShortcutFolder" Directory="ApplicationProgramsFolder" On="uninstall" />
|
41 |
| - </Component> |
| 40 | + </Component> |
| 41 | + <Component Id="libeay32.dll" Guid="0f60e6b5-482a-4373-9d19-9e849ad1cc92"> |
| 42 | + <File Id="libeay32.dll" Source="libeay32.dll" KeyPath="yes" Checksum="yes"> |
| 43 | + </File> |
| 44 | + </Component> |
| 45 | + <Component Id="ssleay32.dll" Guid="11bb6d60-045d-4315-964c-709742741d72"> |
| 46 | + <File Id="ssleay32.dll" Source="ssleay32.dll" KeyPath="yes" Checksum="yes"> |
| 47 | + </File> |
| 48 | + </Component> |
42 | 49 | </DirectoryRef>
|
43 | 50 |
|
44 | 51 | <InstallExecuteSequence>
|
45 | 52 | <RemoveExistingProducts After="InstallValidate" />
|
46 | 53 | </InstallExecuteSequence>
|
47 | 54 |
|
48 | 55 | <Feature Id="DefaultFeature" Level="1">
|
49 |
| - <ComponentRef Id="minutor.exe" /> |
| 56 | + <ComponentRef Id="minutor.exe" /> |
| 57 | + <ComponentRef Id="libeay32.dll" /> |
| 58 | + <ComponentRef Id="ssleay32.dll" /> |
50 | 59 | </Feature>
|
51 | 60 |
|
52 | 61 | <Property Id="WIXUI_INSTALLDIR">INSTALLDIR</Property>
|
|
0 commit comments