-
Notifications
You must be signed in to change notification settings - Fork 2
/
corteca.wxs
30 lines (28 loc) · 1.41 KB
/
corteca.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
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="CortecaCLI" Version="$(var.Version)" Manufacturer="NOKIA" UpgradeCode="$(var.Guid)" Language="1033">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/>
<Media Id="1" Cabinet="corteca.cab" EmbedCab="yes"/>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<!-- Directory for the executable -->
<Directory Id="INSTALLFOLDER" Name="Corteca"/>
</Directory>
<Directory Id="CommonAppDataFolder">
<!-- Directory for config and templates -->
<Directory Id="PROGRAMDATADIR" Name="Corteca"/>
</Directory>
<Directory Id="PersonalFolder">
<!-- Directory for PowerShell completion scripts -->
<Directory Id="PSMODULEDIR" Name="PowerShell">
<Directory Id="PSMODULECOMPLETIONS" Name="Modules"/>
</Directory>
</Directory>
</Directory>
<Feature Id="ProductFeature" Title="CortecaCLI" Level="1">
<ComponentGroupRef Id="CortecaPSCompletionComponentGroup" />
<ComponentGroupRef Id="CortecaExeComponentGroup" />
<ComponentGroupRef Id="CortecaConfigComponentGroup" />
</Feature>
</Product>
</Wix>