Appears to be bug in VS2012 RC unit test of FSharpx data structure DList fold

Answered Appears to be bug in VS2012 RC unit test of FSharpx data structure DList fold

All Replies

  • Monday, June 25, 2012 7:44 PM
     
     

    May be it's better to ask developers working on FSharpx project:

    https://github.com/fsharp/fsharpx/issues

    Petr

  • Saturday, July 14, 2012 2:40 PM
     
     Answered Has Code

    Submitted this to Microsoft and got in contact with one of their engineers. He came up with this work around, but he's keeping the case open so as to possibly find a more elegant solution.

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

    remove the existing blank <runtime /> section, and replace it with

    <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>


    Jack Fox facster.com

    • Marked As Answer by jackfoxy Saturday, July 14, 2012 2:40 PM
    •