Last active
March 16, 2020 22:28
-
-
Save seanw122/6120ef8e1d580ab2165dd48a1dff1719 to your computer and use it in GitHub Desktop.
Install ASP.NET Core 3.1 on Ubuntu 18.04
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
sudo wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \ | |
sudo dpkg -i packages-microsoft-prod.deb && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install apt-transport-https && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \ | |
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y aspnetcore-runtime-3.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment