这是在mac / vscode设置上。 由于此错误消息,我无法从CLI安装任何内容。
我该如何解决这个问题? 命令是:
dotnet install Microsoft.AspNetCore.Authentication.Facebook
答案 0 :(得分:0)
我有同样的问题,即使Microsoft Docs使用相同的命令,但有一个评论:
dotnet安装不再有效。将Microsoft.AspNetCore.Authentication.Facebook添加到project.json并运行" dotnet restore"
答案 1 :(得分:0)
根据文档here,您应该可以尝试这些。
视窗:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&([scriptblock]::Create((Invoke-WebRequest -useb 'https://dot.net/v1/dotnet-install.ps1'))) <additional install-script args>"
的MacOS / Linux的:
curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin <additional install-script args>