Install .NET Framework 4.7.2 (if needed) with WIX installer
A ticket was opened here last year and a workaround has been provided:
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<!--
.NET Framework installation state properties
Official documentation can be found at the following location:
.NET Framework 4.5/4.5.1/4.5.2/4.6/4.6.1/4.6.2/4.7/4.7.1 - http://msdn.microsoft.com/en-us/library/w0x726c2(v=vs.110).aspx
-->
<?define NetFx471MinRelease = 461308 ?>
<?define NetFx471WebLink = http://go.microsoft.com/fwlink/?LinkId=852092 ?>
<?define NetFx471RedistLink = http://go.microsoft.com/fwlink/?LinkId=852104 ?>
<?define NetFx471EulaLink = http://referencesource.microsoft.com/license.html ?>
<Fragment>
<PropertyRef Id="WIXNETFX4RELEASEINSTALLED" />
<Property Id="WIX_IS_NETFRAMEWORK_471_OR_LATER_INSTALLED" Secure="yes" />
<SetProperty Id="WIX_IS_NETFRAMEWORK_471_OR_LATER_INSTALLED" Value="1" After="AppSearch">
WIXNETFX4RELEASEINSTALLED >= "#$(var.NetFx471MinRelease)"
</SetProperty>
</Fragment>
<Fragment>
<util:RegistrySearchRef Id="NETFRAMEWORK45"/>
<WixVariable Id="WixMbaPrereqPackageId" Value="NetFx471Web" />
<WixVariable Id="WixMbaPrereqLicenseUrl" Value="$(var.NetFx471EulaLink)" Overridable="yes" />
<WixVariable Id="NetFx471WebDetectCondition" Value="NETFRAMEWORK45 >= $(var.NetFx471MinRelease)" Overridable="yes" />
<WixVariable Id="NetFx471WebInstallCondition" Value="" Overridable="yes" />
<WixVariable Id="NetFx471WebPackageDirectory" Value="redist\" Overridable="yes" />
<PackageGroup Id="NetFx471Web">
<ExePackage
InstallCommand="/q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
RepairCommand="/q /norestart /repair /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
UninstallCommand="/uninstall /q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
PerMachine="yes"
DetectCondition="!(wix.NetFx471WebDetectCondition)"
InstallCondition="!(wix.NetFx471WebInstallCondition)"
Id="NetFx471Web"
Vital="yes"
Permanent="yes"
Protocol="netfx4"
DownloadUrl="$(var.NetFx471WebLink)"
LogPathVariable="NetFx471FullLog"
Compressed="no"
Name="!(wix.NetFx471WebPackageDirectory)NDP471-KB4033344-Web.exe">
<RemotePayload
CertificatePublicKey="2ECAEC21B884B40A7C5FB141D2CBC4CDA4930752"
CertificateThumbprint="49D59D86505D82942A076388693F4FB7B21254EE"
Description="Microsoft .NET Framework 4.7.1 Setup"
Hash="C0919415622D86C3D6AB19F0F92EA938788DB847"
ProductName="Microsoft .NET Framework 4.7.1"
Size="1434504"
Version="4.7.2558.0" />
</ExePackage>
</PackageGroup>
</Fragment>
<Fragment>
<util:RegistrySearchRef Id="NETFRAMEWORK45"/>
<WixVariable Id="WixMbaPrereqPackageId" Value="NetFx471Redist" />
<WixVariable Id="WixMbaPrereqLicenseUrl" Value="$(var.NetFx471EulaLink)" Overridable="yes" />
<WixVariable Id="NetFx471RedistDetectCondition" Value="NETFRAMEWORK45 >= $(var.NetFx471MinRelease)" Overridable="yes" />
<WixVariable Id="NetFx471RedistInstallCondition" Value="" Overridable="yes" />
<WixVariable Id="NetFx471RedistPackageDirectory" Value="redist\" Overridable="yes" />
<PackageGroup Id="NetFx471Redist">
<ExePackage
InstallCommand="/q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
RepairCommand="/q /norestart /repair /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
UninstallCommand="/uninstall /q /norestart /ChainingPackage "[WixBundleName]" /log "[NetFx471FullLog].html""
PerMachine="yes"
DetectCondition="!(wix.NetFx471RedistDetectCondition)"
InstallCondition="!(wix.NetFx471RedistInstallCondition)"
Id="NetFx471Redist"
Vital="yes"
Permanent="yes"
Protocol="netfx4"
DownloadUrl="$(var.NetFx471RedistLink)"
LogPathVariable="NetFx471FullLog"
Compressed="no"
Name="!(wix.NetFx471RedistPackageDirectory)NDP471-KB4033342-x86-x64-AllOS-ENU.exe">
<RemotePayload
CertificatePublicKey="2ECAEC21B884B40A7C5FB141D2CBC4CDA4930752"
CertificateThumbprint="49D59D86505D82942A076388693F4FB7B21254EE"
Description="Microsoft .NET Framework 4.7.1 Setup"
Hash="5F0597CEADDBDF3BAD24CA6EBE142BD81C2DF713"
ProductName="Microsoft .NET Framework 4.7.1"
Size="68742112"
Version="4.7.2558.0" />
</ExePackage>
</PackageGroup>
</Fragment>
</Wix>
and then in bundle.wxs you need to add this:
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="..."
Version="..."
Manufacturer="..."
UpgradeCode="..."
>
<Chain>
<!--Install .Net Framework 4.7.1-->
<PackageGroupRef Id="NetFx471Redist"/>
<!--Install Product-->
<MsiPackage
Id="Setup"
DisplayInternalUI="yes"
Compressed="yes"
SourceFile="..."
Vital="yes">
</MsiPackage>
</Chain>
</Bundle>
</Wix>
I found it bit misleading that the question is about 4.7.2 but the accepted answer about 4.7.1 version.
All the exact bits are here.
Just tested on a computer without 4.7.2 installed and all worked perfectly - the installer downloaded and installed .NET Framework component and first then it continued with the program installation itself.