Skip to content

Commit

Permalink
install dotnet 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Dec 14, 2018
1 parent f0c31e2 commit 6e5aff9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes

## 0.16.0 - 2018-12-14
* Update to ASP.NET 2.2

## 0.15.11 - 2018-11-05
* Model-Audio-Update

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "sdk": { "version": "2.1.403" } }
{ "sdk": { "version": "2.2.100" } }
5 changes: 4 additions & 1 deletion src/Client/ReleaseNotes.fs
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
module internal ReleaseNotes

let Version = "0.15.11"
let Version = "0.16.0"

let IsPrerelease = false

let Notes = """
# Release Notes
## 0.16.0 - 2018-12-14
* Update to ASP.NET 2.2
## 0.15.11 - 2018-11-05
* Model-Audio-Update
Expand Down
2 changes: 1 addition & 1 deletion src/PiServer/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sudo apt-get install -y curl libunwind8 gettext apt-transport-https omxplayer np
log_action_end_msg $?

log_action_begin_msg "Download dotnet core "
curl -sSL -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/4d555219-1f04-47c6-90e5-8b3ff8989b9c/0798763e6e4b98a62846116f997d046e/dotnet-runtime-2.1.5-linux-arm.tar.gz
curl -sSL -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/a3f3e38e-246a-4eab-8da3-63f9cd1b1c13/c2e795a9bb03bc75d3cfa767f3f77310/dotnet-runtime-2.2.0-linux-arm.tar.gz
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
rm dotnet.tar.gz
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
Expand Down
7 changes: 7 additions & 0 deletions src/PiServer/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ if [ -e $DEFAULTS ]; then
exit 2
fi

log_action_begin_msg "Download dotnet core "
curl -sSL -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/a3f3e38e-246a-4eab-8da3-63f9cd1b1c13/c2e795a9bb03bc75d3cfa767f3f77310/dotnet-runtime-2.2.0-linux-arm.tar.gz
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
rm dotnet.tar.gz
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
log_action_end_msg $?

log_action_begin_msg "Updating packages "
log_action_cont_msg " apt update "
apt-get -qq update
Expand Down

0 comments on commit 6e5aff9

Please sign in to comment.