[wix-users] how to access the below url

Rambabu Nethi rambabu.nethi at gmail.com
Thu Jan 27 13:43:48 PST 2022


Hi Team,

I am trying to find out the supported values for <SupportedFramewor> since
i want the prerequisite bootstrapper application to be launched if .Net
4.6.2 is not installed on the machine and found below article.
But this seems to be inaccessible. Is there a way to get the value for .Net
4.6.2 in below config file? Currently below config file detects v4.0
existence.

http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/BootstrapperCore-config-wix-bootstrapper-what-are-valid-values-for-supportedFramework-tp7600079p7600093.html

*BootstrapperCore.config*
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <sectionGroup name="wix.bootstrapper"
type="Microsoft.Tools.WindowsInstallerXml.Bootstrapper.BootstrapperSectionGroup,
BootstrapperCore">
      <section name="host"
type="Microsoft.Tools.WindowsInstallerXml.Bootstrapper.HostSection,
BootstrapperCore" />
    </sectionGroup>
  </configSections>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v4.0" />
    <supportedRuntime version="v2.0.50727" />
  </startup>
  <wix.bootstrapper>
    <host assemblyName="MyBinary">
      <supportedFramework version="v4\Full" />
    </host>
  </wix.bootstrapper>
</configuration>


More information about the wix-users mailing list