2018-03-27 05:39:48 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<Patch
|
|
|
|
AllowRemoval="yes"
|
|
|
|
Manufacturer="Microsoft Powershell"
|
2019-01-25 04:50:11 +08:00
|
|
|
MoreInfoURL="https://github.com/powershell/powershell"
|
2018-03-27 05:39:48 +08:00
|
|
|
DisplayName="Sample Patch"
|
|
|
|
Description="Small Update Patch"
|
|
|
|
Classification="Update"
|
|
|
|
>
|
|
|
|
|
|
|
|
<Media Id="5000" Cabinet="RTM.cab">
|
|
|
|
<PatchBaseline Id="RTM"/>
|
|
|
|
</Media>
|
|
|
|
|
|
|
|
<PatchFamilyRef Id="SamplePatchFamily"/>
|
|
|
|
</Patch>
|
|
|
|
|
|
|
|
<Fragment>
|
|
|
|
<PatchFamily Id='SamplePatchFamily' Version='6.1.1' Supersede='yes'>
|
|
|
|
<PropertyRef Id="ProductVersion"/>
|
|
|
|
</PatchFamily>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|