Ubuntu 16.04中安装.NET Core 2 详解(2)

  二、安装.net core2

  这个比较简单,参照官方的基本上没问题,参考网址:https://github.com/dotnet/core/blob/master/release-notes/download-archive.md 

Ubuntu 16.04中安装.NET Core 2 详解

Ubuntu 16.04中安装.NET Core 2 详解

  安装.NET Core SDK 2.0.2 with .NET Core 2.0.0

Ubuntu 16.04中安装.NET Core 2 详解

  安装成功之后,查看dotnet 信息

Ubuntu 16.04中安装.NET Core 2 详解

  查看dotnet自带的模板:dotnet new --list

Ubuntu 16.04中安装.NET Core 2 详解

  三、跑一个MVC模板

  1、新建一个工作目录

Ubuntu 16.04中安装.NET Core 2 详解

  2、新建一个MVC应用程序: dotnet new mvc -n test1   新建成功并跑一下程序,切换到程序根目录之后执行命令: dotnet run

Ubuntu 16.04中安装.NET Core 2 详解

  3、在浏览器键入 :5000/ (大神说:Linux和win10共享网络)

Ubuntu 16.04中安装.NET Core 2 详解

  4、停止应用程序

Ubuntu 16.04中安装.NET Core 2 详解

  5、之后我们发布一下 dotnet publish -c release

Ubuntu 16.04中安装.NET Core 2 详解

  6、切换到“publish”目录,执行命:dotnet test1.dll

Ubuntu 16.04中安装.NET Core 2 详解

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/13228.html