Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fails to load FSharp.Core in .NET 4.5 #101

Open
neurospeech opened this issue Nov 20, 2013 · 2 comments
Open

Fails to load FSharp.Core in .NET 4.5 #101

neurospeech opened this issue Nov 20, 2013 · 2 comments

Comments

@neurospeech
Copy link

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.

@Crisfole
Copy link

+1, same happens on .net 4.0, although my of FSharp.Core version is 4.3

@mrchief
Copy link

mrchief commented Jul 18, 2014

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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants