Vinculação de todo o sistemaRedirect para F # 4.0.0.0 a 4.3.0.0

Eu tenho alguns testes xUnit que estão falhando com o comum

Could not load file or assembly 'FSharp.Core, Version=4.0.0.0, Culture=neutral, 
PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. 
The system cannot find the file specified.

Para executar um redirecionamento de toda a máquina, adicionei ao arquivo

C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config 

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a"
                        culture="neutral"/>
      <bindingRedirect oldVersion="4.0.0.0" newVersion="4.3.0.0"/>
    </dependentAssembly>
  </assemblyBinding>
</runtime>

Você tem uma maneira melhor de lidar definitivamente com o problema 4.0 / 4.3?

questionAnswers(1)

yourAnswerToTheQuestion