1. 程式人生 > >hello netcore

hello netcore

output 地址 alt idt 官網 fadein line 微軟官方 wow

一、環境準備

VMware

CentOS 7.1

國內下載鏡像地址:

http://mirrors.aliyun.com/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1503.iso
http://mirrors.aliyun.com/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1503-01.iso

二、dotnet 安裝

在centos7.1環境下直接參考微軟官方說明(centos6就比較麻煩了,我嘗試了下需要安裝很多基礎組建,就沒再糾結此問題,果斷換系統)

  1. sudo yum install libunwind libicu
  2. curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=848821
  3. sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
  4. sudo ln -s /opt/dotnet/dotnet /usr/local/bin

三、demo

  dotnet new console -o hwapp #官網下載hwapp

  cd hwapp #編輯以下hello world改為hello netcore

  dotnet restore

  dotnet run # run && output

技術分享

四、關於netcore命令的說明

技術分享

  

fyi.

hello netcore