我已经在我的ubuntu机器上使用instuctions安装了dotnet core。现在我注意到nuget没有安装。
bash: nuget: command not found
在我的Mac上,nuget在安装了dotnet核心之后就可以使用了。
我想要这样做的原因是我需要推送一个包。
如何在我的ubuntu机器上安装nuget?
发布于 2017-07-29 07:42:45
发布于 2019-03-04 04:00:15
dotnet cli包含SDK中包含的一组内置命令。您可以使用dotnet --help
列出它们。您可以使用dotnet nuget --help
列出Nuget子命令。仍然支持Nuget.exe,但仅限于Windows。
https://stackoverflow.com/questions/39221296
复制相似问题