c# - Cannot add Linq2Twitter package to Xamarin Studio -
when trying add linq2twitter nuget package xamarin studio, following error:
could not find part of path "(..)/packages/linqtotwitter.3.1.1/linqtotwitter.3.1.1.nupkg".
previously package installed not reference code. after bit of research found may has missing support pcl's (http://lastexitcode.com/blog/2014/11/16/installingportableclasslibrariesforxamarinstudio/)
after installing mono mdk (mono development kit) here http://www.mono-project.com/download/, no longer able add package project.
any ideas :-)
had same issue multiple times, in xamarin studio on mac. issue fixed manually editing packages.config have id in lowercase instead of 1 provided nuget, both in pcl , ios project..
the entry based on id be:
<package id="linqtotwitter" version="(...)" targetframework="(...)" />
more info in discussion other answer in topic of @mattward
Comments
Post a Comment