Twitterizer 2 and C# - Namespace could not be found

我与影子孤独终老i 提交于 2019-12-05 17:16:12

问题


I have a silly problem with Twitterizer2 and probably me :) . I add the reference twitterizer 2.3.1 from my downloads directory along with the newtonsoft one by right clicking on references and browsing to find them.

I then add

using Twitterizer;

lo and behold all my squiggly red underlines go away

on all this sort of code:

OAuthTokens tokens = new OAuthTokens();

when I go to run it(with debug), I get an error:

Error 2 The type or namespace name 'Twitterizer' could not be found (are you missing a using directive or an assembly reference?)

Now using Twitterizer;

becomes in error(red and squiggly). It is like it has been dereferenced. I add it back and all is well until I run it - arggh

TIA


回答1:


Are you using VS2010? If so, try to go project properties -> Application Tab and make sure that you are not using a Framework version that has "client profile" in it.




回答2:


If you are using VS2010 vb.net you need to go to project properties ->Publish Tab-> Prerequisites

Uncheck ms .net framework 4 client profile, and check ms .net framework 4



来源:https://stackoverflow.com/questions/4203674/twitterizer-2-and-c-sharp-namespace-could-not-be-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!