无法在visual studio for mac中找到包管理器控制台

时间:2017-05-20 13:39:59

标签: visual-studio-mac

我正在使用Visual studio for mac。我需要安装一些软件包,但我找不到软件包管理器控制台。

Visual Studio版本:预览1(7.0版本347)

4 个答案:

答案 0 :(得分:3)

与Xamarin Studio类似,您必须使用其对话框

https://developer.xamarin.com/guides/cross-platform/xamarin-studio/nuget_walkthrough/

enter image description here

由于没有跨平台的PowerShell,Xamarin Studio缺少Package Manager控制台。有一天它可能会出现在Visual Studio for Mac中。我们会看到。

答案 1 :(得分:2)

您可以按照NuGet CLI参考并安装它 https://docs.microsoft.com/en-us/nuget/tools/nuget-exe-cli-reference

提供的链接摘录如下:

  

<强>的MacOS / Linux的

     

行为可能因操作系统分布而略有不同。

     
      
  1. 安装Mono 4.4.2 or later

  2.   
  3. 在shell提示符下执行以下命令:

         
    # Download the latest stable `nuget.exe` to `/usr/local/bin`
    sudo curl -o /usr/local/bin/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
    # Give the file permissions to execute
    sudo chmod 755 /usr/local/bin/nuget.exe 
    
  4.   
  5. 通过将以下脚本添加到适用于您的操作系统的文件(通常为~/.bash_aliases or ~/.bash_profile)来创建别名:

         
    # Create as alias for nuget
    alias nuget="mono /usr/local/bin/nuget.exe" 
    
  6.   
  7. 重新加载shell。输入不带参数的nuget来测试安装。应显示NuGet CLI帮助。

  8.   

答案 2 :(得分:2)

至少在Visual Studio Community 7.8.1 build 4中,可以使用搜索词“ nuget”在Visual Studio->扩展中找到它:

enter image description here

我花了很长时间才找到它,希望它可以帮助其他人更快地找到它!

答案 3 :(得分:0)

我为Mac用户找到了很好的参考:

https://github.com/mrward/monodevelop-nuget-extensions

感谢您的参考,它对我有用。