27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<?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. -->
|
|
|
|
|
|
<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>
|
|
<!-- Example only. Use only if the startup/supportedRuntime above cannot discern supported frameworks. -->
|
|
<!--
|
|
<supportedFramework version="v4\Client" />
|
|
<supportedFramework version="v3.5" />
|
|
<supportedFramework version="v3.0" />
|
|
-->
|
|
|
|
<!-- Example only. Replace the host/@assemblyName attribute with assembly that implements BootstrapperApplication. -->
|
|
<host assemblyName="AssemblyWithClassThatInheritsFromBootstrapperApplication" />
|
|
</wix.bootstrapper>
|
|
</configuration>
|