I am trying to use FsCheck 0.8.3 in Visual Studio 2010 for F#. I have created a project, and wrote the example line:
let revRevIsOrig (xs:list<int>) = List.rev(List.rev xs) = xs
from the quick-start guide. After this, I added the FsCheck.dll to the references, and
open FsCheck
at the top.
When running, I recieve
The namespace or module 'FsCheck' is not defined
Forgive me if the answer is obvious, but I'm quite new and don't see why this isn't working.