Skip to content

Commit d8b1a33

Browse files
committed
Update MSI installer settings
1 parent 1e9b470 commit d8b1a33

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Package/msi/Product.wxs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ WHEN PERFORMING MAJOR IP UPGRADES (e.g., 2.5 => 2.6):
1313

1414
<?include Version.wxi ?>
1515

16-
<?define UpgradeCode = "a162604e-d515-4155-9b8b-2854502d1588" ?>
16+
<?define UpgradeCode = "664cd4f7-5c34-441e-b3d0-dba395e9414f" ?>
1717

1818
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension">
1919
<Product Id="*" UpgradeCode="$(var.UpgradeCode)" Name="$(var.ProductShortName) $(var.ProductVersionText)" Version="$(var.ProductVersion)" Language="1033" Manufacturer="$(var.Manufacturer)">
@@ -31,13 +31,13 @@ WHEN PERFORMING MAJOR IP UPGRADES (e.g., 2.5 => 2.6):
3131
<UpgradeVersion Minimum="0.0.0.0" IncludeMinimum="yes" Maximum="$(var.ProductVersion)" IncludeMaximum="no" Property="OLDERVERSIONBEINGUPGRADED" OnlyDetect="no" />
3232
</Upgrade>
3333

34-
<PropertyRef Id="WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED" />
34+
<PropertyRef Id="WIX_IS_NETFRAMEWORK_46_OR_LATER_INSTALLED" />
3535

3636
<!-- Properties -->
3737
<Property Id="ARPPRODUCTICON" Value="ipy.ico" />
3838
<Property Id="ARPHELPLINK" Value="http://ironpython.net/support/" />
3939
<Property Id="ARPURLINFOABOUT" Value="http://www.ironpython.net" />
40-
<Property Id="ARPURLUPDATEINFO" Value="https://github.com/IronLanguages/ironpython2" />
40+
<Property Id="ARPURLUPDATEINFO" Value="https://github.com/IronLanguages/ironpython3" />
4141
<Property Id="ARPNOREPAIR" Value="yes" Secure="yes" /> <!-- Remove repair -->
4242
<Property Id="ARPNOMODIFY" Value="yes" Secure="yes" /> <!-- Remove modify -->
4343

@@ -53,7 +53,7 @@ WHEN PERFORMING MAJOR IP UPGRADES (e.g., 2.5 => 2.6):
5353

5454
<!-- Launch conditions -->
5555
<Condition Message="An administrator must approve or install [ProductName]."><![CDATA[Privileged]]></Condition>
56-
<Condition Message="[ProductName] requires .NET Framework 4.5.2 or later."><![CDATA[Installed OR WIX_IS_NETFRAMEWORK_452_OR_LATER_INSTALLED]]></Condition>
56+
<Condition Message="[ProductName] requires .NET Framework 4.6 or later."><![CDATA[Installed OR WIX_IS_NETFRAMEWORK_46_OR_LATER_INSTALLED]]></Condition>
5757

5858
<!-- Root directories -->
5959
<Directory Id="TARGETDIR" Name="SourceDir">

0 commit comments

Comments
 (0)