I wanted to use F# Power Pack in Windows Phone 7.1 application but it does not work.
If I just reference and use Power Pack in WP7 app it complains about mscorlib. Power Pack references classic .NET mscorlib but WP7 has its own version, which is not compatibale.
Edit: As Robert says, Power Pack has version for silverlight which should be used (located in "C:\Program Files (x86)\FSharpPowerPack-2.0.0.0\Silverlight\v4.0\FSharp.PowerPack.dll").
But Even if I reference the correct version of Power Pack, exception is thrown when I try use something from it.
System.TypeLoadException: Could not load type 'Microsoft.FSharp.Text.Lexing.LexBuffer`1' from assembly 'FSharp.PowerPack, Version=2.0.0.0, Culture=neutral, PublicKeyToken=99CF57B64B44BF93'.
The exception is thrown before entering to the method with:
var x = LexBuffer<char>.FromString("asdf"); // usage of PowerPack
This can be caused if incorrect version of PowerPack dll is loaded at runtime, but Modules window shows just this path:
\Applications\Install\152F0408-C230-4FDD-93E1-78660547C6B8\Install\FSharp.PowerPack.dll
I am also pretty sure, that everything I reference are Silverlight DLLs only and the application is running at WP emulator.
Any ideas what is wrong?
Thanks