私はVisual Studio for Macを使用しています。パッケージをインストールする必要がありますが、そのためのパッケージマネージャーコンソールが見つかりません。
Visual Studioバージョン:プレビュー1(7.0ビルド347)
Xamarin Studioと同様に、ダイアログを使用する必要があります。
https://developer.xamarin.com/guides/cross-platform/xamarin-studio/nuget_walkthrough/
クロスプラットフォームのPowerShellがなかったため、Xamarin Studioにはパッケージマネージャーコンソールがありません。 Visual Studio for Macでいつか登場するかもしれません。様子を見よう。
NuGet CLIリファレンスに従ってインストールできます https://docs.Microsoft.com/en-us/nuget/tools/nuget-exe-cli-reference
提供されたそのリンクからの抜粋は次のとおりです。
macOS/Linux
動作はOSディストリビューションによってわずかに異なる場合があります。
インストール Mono 4.4.2以降 。
シェルプロンプトで次のコマンドを実行します。
# 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
次のスクリプトをOSの適切なファイルに追加してエイリアスを作成します(通常は
~/.bash_aliases or ~/.bash_profile
):# Create as alias for nuget alias nuget="mono /usr/local/bin/nuget.exe"
シェルをリロードします。パラメータなしで
nuget
を入力して、インストールをテストします。 NuGet CLIヘルプが表示されます。