When installing Breeze.WebApi 1.4.2 in a fresh project I am getting this error:
PM> Install-Package Breeze.WebApi
Attempting to resolve dependency 'Breeze.Client (≥ 1.4.2)'.
Attempting to resolve dependency 'Q'.
Install-Package : **External packages cannot depend on packages that target projects.**
At line:1 char:16
+ Install-Package <<<< Breeze.WebApi
+ CategoryInfo : NotSpecified: (:) [Install-Package], InvalidOperationException
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PowerShell.Commands.InstallPackageCommand
What is going on here?
TJ