mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-21 06:45:32 -06:00
10 lines
No EOL
267 B
Bash
Executable file
10 lines
No EOL
267 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
apt-get update
|
|
wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
|
|
dpkg -i packages-microsoft-prod.deb
|
|
apt-get install -y apt-transport-https
|
|
apt-get update
|
|
apt-get install -y dotnet-sdk-2.2
|
|
apt-get clean |