forked from e8tools/tool1cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool1cd.wxs
executable file
·34 lines (34 loc) · 1.43 KB
/
tool1cd.wxs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version='1.0' encoding='utf-8'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='Tool 1CD 1.0.0'
Id='0cd4c107-3b0f-4607-9ece-de5b77947844' UpgradeCode='7fb3fd3b-5766-4961-8054-5aa0e8669129'
Manufacturer='dmpas.ru'
Language='1049' Codepage='1251' Version='1.0.0' >
<Package Id='*' Keywords='Installer' Description='Tool 1CD 1.0.0'
InstallerVersion='100' Languages='1049' Compressed='yes' SummaryCodepage='1251' />
<Media Id="1" Cabinet="data1.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="APPLICATIONFOLDER" Name="Tool1CD">
<Component Id="Console_Component" Guid='b2e0080f-1832-4e9e-832f-0388e41cb9cb'>
<File Id='ctool1cd.exe' DiskId='1' Source='tool1cd\bin\ctool1cd.exe' />
</Component>
<Component Id="SetPathVariable" Guid='c32bd33e-ceb8-48d3-94b9-d0f69225de81' KeyPath='yes'>
<Environment Action='set' Id='SetPathToInstallFolderToSystemPath'
Name='PATH'
Value="[APPLICATIONFOLDER]"
System='yes'
Permanent='no'
Part='last'
/>
</Component>
</Directory>
</Directory>
</Directory>
<Property Id='ApplicationFolderName' Value='Tool1CD' />
<Feature Id="BasicInstallation" Title="Tool 1CD console" Level="1">
<ComponentRef Id="Console_Component" />
<ComponentRef Id="SetPathVariable" />
</Feature>
</Product>
</Wix>