You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.7 KiB
32 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<configuration> |
|
<configSections> |
|
<!-- Microsoft.Build.Engine instead of Microsoft.Build here because a task run under Microsoft.Build may load Microsoft.Build.Engine, which will attempt to read this section. --> |
|
<section name="msbuildToolsets" type="Microsoft.Build.BuildEngine.ToolsetConfigurationSection, Microsoft.Build.Engine, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> |
|
</configSections> |
|
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
|
</startup> |
|
<runtime> |
|
<DisableFXClosureWalk enabled="true" /> |
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|
<!-- redirect MSBuild.Framework requests to make old task assemblies work with MSBuild 12.0 --> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Microsoft.Build.Framework" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="12.0.0.0"/> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Microsoft.Build.Engine" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="12.0.0.0"/> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Microsoft.Build" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="12.0.0.0"/> |
|
</dependentAssembly> |
|
<dependentAssembly> |
|
<assemblyIdentity name="Microsoft.CompactFramework.Build.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> |
|
<bindingRedirect oldVersion="0.0.0.0-99.9.9.9" newVersion="9.0.0.0"/> |
|
</dependentAssembly> |
|
</assemblyBinding> |
|
</runtime> |
|
</configuration>
|
|
|