IronJS
IronJS copied to clipboard
Fails to load FSharp.Core in .NET 4.5
I have a project, in which I used released version found on Nuget, your released library references FSharp.Core 4.0.0.0 however along with .NET 4.5 FSharp.Core version is 4.0.3.0 and this wasn't loading probably you have referenced compilation to specific version.
+1, same happens on .net 4.0, although my of FSharp.Core version is 4.3
Not sure why, but this seems to fix it (there is no 4.3, only 4.3.1):
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>