In .NET framework history, .NET have its full framework from .NET 1.0 to .NET 4.6.2, specially created for windows platform. Latest version of .NET framework is .NET 4.6.2 up to now, In the end of june Microsoft released a new .NET framework called .NET Core for Windows, Linux and Mac. A great feature of .NET core is, a solution build on windows can be run and modify in a linux based environment. We can build an application on winows, and can host it in a Linux server, how cool is that.
Add dotnet apt-get feed
First of all, setup the apt-get feed and update it.
apt-get is a free package manager program. It works with Ubuntu’s APT (Advanced Packaging Tool). Using that command line program, We can Install new packages, remove or upgrade packages.
for Ubuntu 16.04, run these commands,
sudo sh -c ‘echo “deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main” > /etc/apt/sources.list.d/dotnetdev.list’
sudo apt-key adv –keyserver apt-mo.trafficmanager.net –recv-keys 417A0893
Then update apt-get feed Using following command, sudo apt-get update
Install .NETCore top of apt-get
Install .NETCore using following command, sudo apt-get install dotnet-dev-1.0.0-preview2-003121
Check whether .NETCore is properly installed using dotnet command. It shows .NETCore version as 1.0.1