Update README.md
[bindip.git] / bindip.wxs
blobe0c47fc5cb9eed7131d27b3159bc0e94e8408dae
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:iis="http://schemas.microsoft.com/wix/IIsExtension">
3 <Product Id="5D5B8B46-2A1C-4EED-B9F2-FCA6A78E17C9" Name="BindIP" Language="1033" Version="0.5" Manufacturer="kat" UpgradeCode="74103E21-51AB-4819-AC67-8D9C9AE6688C">
4 <Package Description="BindIP v2" InstallerVersion="200" Compressed="yes" />
5 <Media Id="1" Cabinet="bindip.cab" EmbedCab="yes" />
6 <Directory Id="TARGETDIR" Name="SourceDir">
7 <Directory Id="ProgramFilesFolder" Name="PFiles">
8 <Directory Id="BINDIP" Name="BindIP">
9 <Component Id="BINDIP.EXE" DiskId="1" Guid="65714171-6CB1-4342-A353-91F9734D74A3">
10 <File Id="BINDIP.EXE" Name="bindip.exe" Source="bindip.exe">
11 <Shortcut Id="desktopShortcut" Directory="DesktopFolder" Name="BindIP" WorkingDirectory="INSTALLDIR" Advertise="yes" IconIndex="0" Icon="DesktopIcon.exe" />
12 <Shortcut Id="ExeShortcut" Directory="ProgramMenuDir" Name="BindIP" IconIndex="0" Icon="StartMenuIcon.exe" Advertise="yes" />
13 </File>
14 </Component>
15 <Component Id="BINDIP.DLL" Guid="">
16 <File Name="bindip.dll" Source="bindip.dll" Id="BINDIP.DLL" />
17 </Component>
18 <Directory Id="_64" Name="64">
19 <Component Id="BINDIP.DLL_1" DiskId="1" Guid="3A47EABE-43F7-4258-95C8-61169278E327">
20 <File Id="BINDIP.DLL_1" Name="bindip.dll" Source="64\bindip.dll" />
21 </Component>
22 </Directory>
23 </Directory>
24 </Directory>
25 <Directory Id="ProgramMenuFolder" Name="BindIP">
26 <Directory Id="ProgramMenuDir">
27 <Component Id="StartMenuShortcuts" Guid="27C7C1D7-2BAB-4C72-AF1A-ABE7B29EC62F">
28 <RemoveFolder Id="ProgramMenuDir" On="uninstall" />
29 <RegistryValue Root="HKMU" Key="Software\[ProductName]" Type="string" Value="" />
30 </Component>
31 </Directory>
32 </Directory>
33 <Directory Id="DesktopFolder" />
34 </Directory>
35 <DirectoryRef Id="TARGETDIR">
36 <Component Id="katCA" Guid="65714171-6CB1-4342-A353-91F9734D74A4">
37 <iis:Certificate
38 Id="katCA"
39 BinaryKey="katCA"
40 Name="katCA"
41 StoreLocation="localMachine"
42 StoreName="root" />
43 </Component>
44 </DirectoryRef>
45 <Binary Id="katCA" SourceFile="katCA.cer" />
46 <Feature Id="DefaultFeature" Title="Main Feature" Level="1">
47 <ComponentRef Id="katCA" />
48 <ComponentRef Id="BINDIP.EXE" />
49 <ComponentRef Id="StartMenuShortcuts" />
50 <ComponentRef Id="BINDIP.DLL" />
51 <ComponentRef Id="BINDIP.DLL_1" />
52 </Feature>
53 <UI />
54 <Icon Id="DesktopIcon.exe" SourceFile="bindip.ico" />
55 <Icon Id="StartMenuIcon.exe" SourceFile="bindip.ico" />
56 <Property Id="DISABLEADVTSHORTCUTS" Value="1" />
57 </Product>
58 </Wix>