3

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?

leppie
  • 115,091
  • 17
  • 196
  • 297
Kees C. Bakker
  • 32,294
  • 27
  • 115
  • 203

2 Answers2

2

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.

Christoph Fink
  • 22,727
  • 9
  • 68
  • 113
0

Have you tried downloading the project from the download page? https://tweetinvi.codeplex.com/downloads/get/852208

user2465083
  • 595
  • 3
  • 12