ubuntu下运行第一个.net core web程序

时间:2021-04-01 09:15:21

前置条件 ubuntu系统 且已经安装dotnetcore运行环境

mkdir  testMVC 创建一个文件夹

cd testMVC    进入文件夹

dotnet new -t web 创建程序(使用ls命令查看文件是否都已经成功创建 )

ubuntu下运行第一个.net core web程序

可以看到熟悉的文件目录出来了

dotnet restore 下载json文件中的依赖项

最后一步 dotnet run运行

ubuntu下运行第一个.net core web程序

运行效果

 

 ubuntu下运行第一个.net core web程序

 

 运行成功