Zdravím, udělal jsem si Hello world aplikaci v ASP NET CORE 3.1. Vše funguje, spustí se, OK. Problém nastává při instalaci Nugetu RestSharp. Není ho možné nainstalovat, instalace končí chybou: PM> Install-Package RestSharp Restoring packages for C:\Develop\source\repos\xxx\xxx\xxx.csproj... Install-Package : NU1202: Package RestSharp 106.10.1 is not compatible with netcoreapp3.1 (.NETCoreApp,Version=v3.1). Package RestSharp 106.10.1 does not support any target frameworks. At line:1 char:1 + Install-Package RestSharp + ~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand Install-Package : Package restore failed. Rolling back package changes for 'xxx'. At line:1 char:1 + Install-Package RestSharp + ~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand Time Elapsed: 00:00:30.0122153 Mám nejnovější aktualizované VS 2019. Nainstaloval jsem nejnovější .NET Core SDK 3.1 Projekt jsem zkoušel clean, rebuild. Problém stále přetrvává... Co ještě zkusit? U kolega na vedlejším počítači má stejný kód a ten mu funguje. Díky za rady.
|