1. 安装libunwind

cd /usr/local/src

wget http://download.savannah.gnu.org/releases/libunwind/libunwind-1.2-rc1.tar.gz

tar -zxf libunwind-1.2-rc1.tar.gz

cd libunwind-1.2-rc1

sh autogen.sh

./configure

make

make install

cd ..

rm -rf libunwind-1.2-rc1

2. 安装cli

wget https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-centos-x64.latest.tar.gz

tar -zxf dotnet-centos-x64.latest.tar.gz

mkdir /usr/dotnet

mv bin /usr/dotnet

vi ~/.bash_profile

在export PATH前加入新行

PATH=$PATH:/usr/dotnet/bin

保存退出

source ~/.bash_profile

3. 测试cli

dotnet --version

.Net Core CLI在CentOS7的安装及使用简介

4. 使用cli

mkdir ~/temp

cd ~/temp

dotnet new

dotnet restore --configfile=temp/NuGet.config

dotnet run

.Net Core CLI在CentOS7的安装及使用简介

.Net Core CLI在CentOS7的安装及使用简介

5. 编译和发布

dotnet build
dotnet publish

build和publish的时候都可以加些参数,具体可看帮助,没有太研究。

相关文章:

  • 2022-12-23
  • 2021-08-27
  • 2021-06-22
  • 2019-07-16
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-25
  • 2022-12-23
  • 2021-08-18
  • 2021-09-27
  • 2022-12-23
  • 2021-11-24
  • 2021-04-12
相关资源
相似解决方案