I have created two brand new solutions using the latest VS 2010:
- C# console application
- F# console application
I have referenced two x64 dll files: Kitware.VTK.dll and Kitware.mummy.Runtime.dll
(can be downloaded here: http://www.kitware.com/products/avdownload.php )
The C# VS 2010 finds the namespace when I write using Kitware.
The F# VS 2010 does not find the namespace when I write open Kitware.
The x86 version works fine in F#. Any idea why is that and how to make the Kitware x64 work in F#?
It’s probably due to the bug described here:
F# project references not working when targeting x64 platform in Visual Studio 2010
They say it will be fixed in the next release of VS.
be well
-h-