Closed3

macでdotnet環境構築

kawarimidollkawarimidoll

homebrew

brew install dotnet-sdk

動作確認

❯ dotnet --version
8.0.108

❯ dotnet --help

Welcome to .NET 8.0!
---------------------
SDK Version: 8.0.403

以下略 dotnetコマンドだけでなく.NETプロジェクト自体の説明も表示される

toolのインストール

❯ dotnet tool install -g dotnet-script
Tools directory '/Users/kawarimidoll/.dotnet/tools' is not currently on the PATH environment variable.
If you are using zsh, you can add it to your profile by running the following command:

cat << \EOF >> ~/.zprofile
# Add .NET Core SDK tools
export PATH="$PATH:/Users/kawarimidoll/.dotnet/tools"
EOF

And run `zsh -l` to make it available for current session.

You can only add it to the current session by running the following command:

export PATH="$PATH:/Users/kawarimidoll/.dotnet/tools"

You can invoke the tool using the following command: dotnet-script
Tool 'dotnet-script' (version '1.5.0') was successfully installed.

インストラクションに従ってPATHを追加

# dotnet PATH
export PATH="$PATH:/Users/kawarimidoll/.dotnet/tools"

スクリプト作成して実行 最初はコンパイル(?)に時間がかかった

❯ echo 'Console.WriteLine("Hello, World!")' > hello.cs

❯ dotnet script hello.cs
Hello, World!
kawarimidollkawarimidoll

SQLサーバーをMac環境で立てるのがむりぽだったので一旦クローズ

このスクラップは23日前にクローズされました