最新のdotnetコマンドを使う

これは備忘録です。 最新のdotnetコマンドをインストールするには以下の2つのPowerShellコマンドを実行すればいい。

curl -Uri https://dot.net/v1/dotnet-install.ps1 -OutFile dotnet-install.ps1
.\dotnet-install.ps1 -Version coherent -Channel master

そもそも私は dotnet format を使ってみたかったので、追加で以下のコマンドを実行した。

dotnet.exe tool install -g dotnet-format

f:id:rbtnn:20190421211605j:plain

リンク

https://docs.microsoft.com/ja-jp/dotnet/core/tools/dotnet-install-script

https://github.com/dotnet/core-sdk