Created
March 12, 2020 15:38
-
-
Save antoniocampos/4c1d2496108a9f96c76279621d173224 to your computer and use it in GitHub Desktop.
Debian Install .net core 3.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt install gpg | |
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg | |
mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ | |
wget -q https://packages.microsoft.com/config/debian/10/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-get update | |
apt-get install apt-transport-https | |
apt-get update | |
apt-get install aspnetcore-runtime-3.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment