863528881f
Use https in URLS across the repository where the domain serves content by https.
25 lines
717 B
XML
25 lines
717 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<Patch
|
|
AllowRemoval="yes"
|
|
Manufacturer="Microsoft Powershell"
|
|
MoreInfoURL="https://github.com/powershell/powershell"
|
|
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>
|