When I deploy my web application to an Azure Web Site, I am getting the following error:
Could not load file or assembly \'FSharp.Core, Version=4.0.0.0, Culture=neut
Reposting from comment:
In my experience, in order to use an F# library from a C# project in Azure, it is necessary to reference FSharp.Core
directly from the C# project in order for the proper assemblies to be uploaded. With C#-to-C# project references the 'Copy Local' property seems to propagate correctly, whereas with C#-to-F# references it does not.
I assume compiling with the --standalone flag probably works as well, but I haven't tried it personally.