Reputation: 59
Install-Package : Could not install package 'RestSharp 106.3.0'. You are trying to install this package into a project that targets .NETFramework,Version=v4.5', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
At line:1 char:16 + Install-Package <<<< RestSharp -Version 106.3.0 + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
Upvotes: 2
Views: 4382
Reputation: 23
For RestSharp 106.3.0 its .NETFramework 4.5.2 and .NETStandard 2.0 check dependencies for this version...
check here https://www.nuget.org/packages/RestSharp
Upvotes: 2