This project is a brief study about C# using Linux with .Net core 5.0 using Microsoft references.
These steps allow you install the .net Core on your Linux Ubuntu 18, you can find more details here:Microsoft docs!
- Add the Microsoft signing key in to your local Linux list of trusted keys:
$ wget https://packages.microsoft.com/config/ubuntu/17.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
$ sudo dpkg -i packages-microsoft-prod.deb
$ rm packages-microsoft-prod.deb
- Just install the .Net Core SDK:
$ sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-2.1
- Check the version:
$ dotnet --version