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

Posted draweye

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.Net Core CLI在CentOS7的安装及使用简介相关的知识,希望对你有一定的参考价值。

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

clip_image001

4. 使用cli

mkdir ~/temp

cd ~/temp

dotnet new

dotnet restore --configfile=temp/NuGet.config

dotnet run

clip_image002

clip_image003

5. 编译和发布

dotnet build
dotnet publish

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

以上是关于.Net Core CLI在CentOS7的安装及使用简介的主要内容,如果未能解决你的问题,请参考以下文章

.Net Core部署Linux系统(CentOS7.6)

.NET Core 1.0 CentOS7 尝试

CentOS7下安装.NET Core SDK 2.2

CentOS7下Docker与.net Core 2.2

.Net Core Linux centos7行—安装nginx,运行静态网站

CentOS7下使用Docker容器化.net Core 2.2