.net core设置起始页,设置起始url,起始地址,起始ip,起始端口
电脑版发表于:2021/12/28 12:09
可以使用命令的时候修改启动端口很方便
dotnet run --urls="http://*:5006"
配置UseKestrel:
webBuilder.UseUrls("http://*:9001");
还可以在launchSettings.json
可以使用命令的时候修改启动端口很方便
dotnet run --urls="http://*:5006"
配置UseKestrel:
webBuilder.UseUrls("http://*:9001");
还可以在launchSettings.json