mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 18:29:24 +08:00
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
||
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" >
|
||
|
|
||
|
<?include $(sys.CURRENTDIR)\Common.wxi?>
|
||
|
|
||
|
<Fragment>
|
||
|
<DirectoryRef Id="ToolsFolder">
|
||
|
<Component Id="BugReportTool_exe" Win64="yes">
|
||
|
<File Source="$(var.BinDir)BugReportTool\PowerToys.BugReportTool.exe" Id="BugReportTool.exe" KeyPath="yes" Checksum="yes" />
|
||
|
</Component>
|
||
|
<Component Id="WebcamReportTool_exe" Win64="yes">
|
||
|
<File Source="$(var.BinDir)WebcamReportTool\PowerToys.WebcamReportTool.exe" Id="WebcamReportTool.exe" Checksum="yes" />
|
||
|
</Component>
|
||
|
<Component Id="StylesReportTool_exe" Win64="yes">
|
||
|
<File Source="$(var.BinDir)StylesReportTool\PowerToys.StylesReportTool.exe" Id="StylesReportTool.exe" Checksum="yes" />
|
||
|
</Component>
|
||
|
</DirectoryRef>
|
||
|
|
||
|
<ComponentGroup Id="ToolComponentGroup" Directory="ToolsFolder">
|
||
|
<ComponentRef Id="BugReportTool_exe" />
|
||
|
<ComponentRef Id="WebcamReportTool_exe" />
|
||
|
<ComponentRef Id="StylesReportTool_exe" />
|
||
|
</ComponentGroup>
|
||
|
|
||
|
</Fragment>
|
||
|
</Wix>
|