I'm trying to use Microsoft Solver Foundation in my C# application in VS2010 Ultimate. I've installed MSF (64 bit version) and as far as I understand I should be able to use the services after declaring:
using Microsoft.SolverFoundation;
However, I get the error "The type or namespace name 'SolverFoundation' does not exist in the namespace 'Microsoft'".
I see that there's Microsoft.Solver.Foundation.dll located in C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.NETFramework\v4.0
Initially I thought the 64 bit version might be the problem so I uninstalled and switched to the 32 bit version. But no success either.
How can I integrate MSF into my C# application?