dotnet core - setting url settings in launchSettings.json and appsettings.json

 We can configure aspnet core app url in launchSettings.json and appsettings.json. A couple of test would reveal that lanchSettings.json is being evaluated then appsettings.  If you would like to override launch settings.json simply the following into appsettings.json.

  "Kestrel": {
    "EndPoints": {
      "Http": {
        "Url": "http://0.0.0.0:5090"
      }
    }
  }






Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm