Search code examples
c#tweetinvi

Tweetinvi namespaces are not recognized although dll's are present


I'm using creating a .Net 4.0 application to post stuff to Twitter using the Tweetinvi API. I can't use packages, so I've downloaded the dll's and added them to my project:

References

Yet my includes are showing errors:

Includes

My error console shows:

Error 423 The type or namespace name 'Core' does not exist in the namespace 'Tweetinvi' (are you missing an assembly reference?) {...file...}.cs 10 17 ApiProviders

Can anyone tell me why this happens and how I could fix this?


Solution

  • Tweetinvi requires the Bcl.Async package. You need to add that too.

    Check all the dependencies and make shure all are installed.

    BUT as already said I highly recommend using NuGet for this. If you are not allowed to use the "public feed" you can download the packages and put them in a local folder and add this folder as a new feed in Visual Studio.