mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
16 lines
624 B
Bash
16 lines
624 B
Bash
|
set -e
|
||
|
set -x
|
||
|
# Install dotnet-format
|
||
|
apt update -yqq
|
||
|
apt install -y gnupg apt-transport-https
|
||
|
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
|
||
|
mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
|
||
|
curl -O https://packages.microsoft.com/config/debian/9/prod.list
|
||
|
mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
|
||
|
chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg
|
||
|
chown root:root /etc/apt/sources.list.d/microsoft-prod.list
|
||
|
apt update -yqq
|
||
|
apt install -y dotnet-sdk-5.0
|
||
|
dotnet tool install --global dotnet-format
|
||
|
ln -s ~/.dotnet/tools/dotnet-format /usr/local/bin/dotnet-format
|