Reputation: 250
Im want to start a new project using memcached with C# and I found the Enyim libraries the best choice, but when I try to use them I get the error:
The type or namespace 'Enyim' does not exist in the class or namespace 'Enyim' (are you missing an assembly reference?)"
What I did to set up the environment was: 1. Install-Package EnyimMemcached (with Nuget) 2. Adding "using Enyim." 3. When I compile the project I got the error
Any recommendation?
Upvotes: 0
Views: 628
Reputation: 5719
Change the target framework of your application to .NET Framework x.x.
Not Client Profile. You can do it in project properties/compile/advanced compile options
Upvotes: 1