mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-23 22:03:10 -06:00
Using .NET Core GitVersion of OSX and Linux. Remove bool from interop due to non-blittable.
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 |