我是靠谱客的博主 温暖世界,最近开发中收集的这篇文章主要介绍.NET Core CLI 运行Net Core程序,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

Net Core CLI 参考 : https://docs.microsoft.com/zh-cn/dotnet/core/tools/dotnet

 

一、项目所在目录运行

1.进入项目文件.csproj所在的目录

2 打开 cmd ,cd 到该目录:

dotnet run: 直接运行

dotnet run  //直接运行net core 程序,默认以 launchSettings.json 文件中配置url启动 

 

dotnet run --urls: 指定端口号

dotnet run --urls http://*:8080
dotnet run --urls https://*:8049
dotnet run --urls=http://*:8048
dotnet run --urls=https://*:8047

 指定项目运行和端口号

dotnet run -p CoreSample.csproj --urls http://*:8094  //指定项目名和端口号运行
dotnet run -p CoreSample.csproj    //指定项目名运行,默认端口号为 launchSettings.json的配置url
dotnet run --project CoreSample.csproj
dotnet run --project CoreSample.csproj --urls http://*:8094
 

 dotnet watch run:加上watch会自动监听程序代码的修改,一旦监听到修改了代码就会自动重新编译项目

dotnet watch run --urls http://*:8080
dotnet watch  run --urls https://*:8049
dotnet watch  run --urls=http://*:8048
dotnet watch  run --urls=https://*:8047

 

二、发布或编译后的项目运行

我这里以 C:Codec#练习CoreCoreSampleCoreSamplebinDebugnetcoreapp3.1  为例

 

 

该项目所对应程序集为 CoreSample.dll 

dotnet CoreSample.dll  //直接运行net core 程序,默认以 launchSettings.json 文件中配置url启动

指定端口号 

//指定端口号
dotnet CoreSample.dll --urls http://*:8096  
dotnet CoreSample.dll --urls=http://*:8096
dotnet CoreSample.dll --urls "http://*:8096"
dotnet CoreSample.dll --urls "https://*:8096"
dotnet CoreSample.dll --urls=http://*:8096 --port=8096
dotnet CoreSample.dll --urls http://*:8096 --port 8096

 

补充:

Ctrl + C:
Ctrl + C  //停止

 

 

dotnet clean:
dotnet clean  //清除项目的默认生成,与VS中的右键清理效果是一样的

 

最后

以上就是温暖世界为你收集整理的.NET Core CLI 运行Net Core程序的全部内容,希望文章能够帮你解决.NET Core CLI 运行Net Core程序所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部