31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
<copyright file="BootstrapperCore.config" company="Outercurve Foundation">
|
|
Copyright (c) 2004, Outercurve Foundation.
|
|
This software is released under Microsoft Reciprocal License (MS-RL).
|
|
The license and further copyright text can be found in the file
|
|
LICENSE.TXT at the root directory of the distribution.
|
|
</copyright>
|
|
-->
|
|
<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>
|