Answers for "asp.net core ignores applicationurl port 5000 defaults to"

C#
0

.net core change localhost port

{
  "iisSettings": {
    "iisExpress": {
      "applicationUrl": "http://localhost:12345",
      "sslPort": 98765 <== Change_This
    }
  },
Posted by: Guest on March-25-2020
0

how to set the server url in dotnet core

> dotnet run --server.urls "http://localhost:5100;http://localhost:5101;http://*:5102"
Posted by: Guest on October-26-2020

C# Answers by Framework

Browse Popular Code Answers by Language