Cross-platform series rollup: Http://www.cnblogs.com/dunitian/p/4822808.html#linux
Vscode Installation: http://www.cnblogs.com/dunitian/p/6661644.html
Sogou Pinyin Installation: http://www.cnblogs.com/dunitian/p/6662374.html
Official Reference Links:
Offline Download: Https://www.microsoft.com/net/download/linux
. NET Core Command Https://docs.microsoft.com/zh-cn/dotnet/articles/core/tools/index
1. Set up source and update Https://www.microsoft.com/net/core#linuxubuntu
2. Installing the SDK
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 hkp://keyserver.ubuntu.com:80--recv-keys 417a0893
sudo apt-get update
1. Create a console program dotnet new Console-o xxx
2. Open With Vscode
3.ctrl+ ' Open terminal
4. Opening CS file for the first time loads some debugging packages
5. Load the dependent package dotnet restore, run the program dotnet
6. Automatically created configuration files
7. Running the console
8.ok, Vscode may not use the VS hi skin, but really much better than the other editors, slowly get used to it
9. Create an MVC project dotnet new Mvc-o Mymvc
10. Load the dependent package dotnet restore runs dotnet run
11. The browser opens the address ~ Run effect
Construction of Netcore Environment under Ubuntu16.04