Could not load file or assembly FSharp.Core, Version=4.0.0.0

前端 未结 8 2075
小蘑菇
小蘑菇 2020-12-15 03:51

I\'m trying to deploy a web application which uses F# 4.0 on Windows Server 2008.

It works on my computer where VS2010 is installed but it doesn\'t work on the serve

8条回答
  •  时光说笑
    2020-12-15 04:12

    I needed version 4.0.0 of FSharp.Core, so I installed it in my Visual Studio 2010 via Nuget:
    http://nuget.org/packages/FSharp.Core

    Or run the following command in the Package Manager Console:
    PM> Install-Package FSharp.Core

    Then publish the project and upload FSharp.Core.dll

提交回复
热议问题