So I downloaded Twitterizer from http://www.twitterizer.net/downloads/
I try to open it in Visual Studio and get all these nuget errors:
The imported project "C:\Twitterizer\.nuget\nuget.targets" was not found.
Confirm that the path in the <Import> declaration is correct, and that the file
exists on disk.
What is going on. How do I deal with this?
This error normally happens when you are trying to open a
.csproj
directly, not through the solution file, and the.csproj
imports the Nuget targets like this:In order to solve it, you can either open the
.sln
and not the.csproj
directly...or remove theimport
line above.Notice that the mentioned error will only happen when you are using
solution wise
package restore, which isn't even recommended anymore.