forked from dorssel/usbipd-win
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPowerShell.wxs
29 lines (28 loc) · 1007 Bytes
/
PowerShell.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
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2024 Frans van Dorsselaer
SPDX-License-Identifier: GPL-3.0-only
-->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<DirectoryRef Id="APPLICATIONFOLDER">
<Directory Id="PowerShell" Name="PowerShell" />
</DirectoryRef>
</Fragment>
<Fragment>
<DirectoryRef Id="PowerShell" FileSource="$(PowerShellDir)">
<Component Id="Usbipd.Automation.dll">
<File Id="Usbipd.Automation.dll" Name="Usbipd.Automation.dll" />
</Component>
<Component Id="Usbipd.PowerShell.dll">
<File Id="Usbipd.PowerShell.dll" Name="Usbipd.PowerShell.dll" />
</Component>
</DirectoryRef>
</Fragment>
<Fragment>
<ComponentGroup Id="PowerShell">
<ComponentRef Id="Usbipd.Automation.dll" />
<ComponentRef Id="Usbipd.PowerShell.dll" />
</ComponentGroup>
</Fragment>
</Wix>