2018-03-31 07:32:14 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
echo 'Installing .NET Core...'
|
|
|
|
|
|
2019-02-27 10:49:19 -08:00
|
|
|
wget https://download.visualstudio.microsoft.com/download/pr/3fb2ae01-c8c5-4d0a-9102-31c8c3386bc5/94b144257db9c52405d7f7e03adc31a9/dotnet-sdk-2.2.104-osx-gs-x64.pkg -O ~/dotnet-sdk-2.2.104-osx-gs-x64.pkg
|
2018-10-26 23:04:22 -07:00
|
|
|
|
2019-02-27 10:49:19 -08:00
|
|
|
sudo installer -pkg ~/dotnet-sdk-2.2.104-osx-gs-x64.pkg -target /
|
2018-03-31 07:32:14 +02:00
|
|
|
|
|
|
|
|
# https://github.com/dotnet/cli/issues/2544
|
|
|
|
|
ln -s /usr/local/share/dotnet/dotnet /usr/local/bin/
|